Skip to content

Commit 55facfd

Browse files
committed
remove sourcery from docker build
1 parent 1073954 commit 55facfd

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ RUN chown appuser:appuser /home/appuser
1313
USER appuser
1414

1515
# Copy the requirements.txt file and install the requirements
16-
COPY --chown=appuser:appuser requirements.txt .
17-
RUN pip install --no-cache-dir --user -r requirements.txt
16+
COPY --chown=appuser:appuser requirements-docker.txt .
17+
RUN pip install --no-cache-dir --user -r requirements-docker.txt
1818

1919
# Copy the application files
20-
COPY --chown=appuser:appuser autogpt/ .
20+
COPY --chown=appuser:appuser autogpt/ ./autogpt
2121

2222
# Set the entrypoint
2323
ENTRYPOINT ["python", "-m", "autogpt"]

requirements-docker.txt

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
beautifulsoup4
2+
colorama==0.4.6
3+
openai==0.27.2
4+
playsound==1.2.2
5+
python-dotenv==1.0.0
6+
pyyaml==6.0
7+
readability-lxml==0.8.1
8+
requests
9+
tiktoken==0.3.3
10+
gTTS==2.3.1
11+
docker
12+
duckduckgo-search
13+
google-api-python-client #(https://developers.google.com/custom-search/v1/overview)
14+
pinecone-client==2.2.1
15+
redis
16+
orjson
17+
Pillow
18+
selenium
19+
webdriver-manager
20+
coverage
21+
flake8
22+
numpy
23+
pre-commit
24+
black
25+
isort

0 commit comments

Comments
 (0)