File tree 2 files changed +28
-3
lines changed
2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ RUN chown appuser:appuser /home/appuser
13
13
USER appuser
14
14
15
15
# 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
18
18
19
19
# Copy the application files
20
- COPY --chown=appuser:appuser autogpt/ .
20
+ COPY --chown=appuser:appuser autogpt/ ./autogpt
21
21
22
22
# Set the entrypoint
23
23
ENTRYPOINT ["python" , "-m" , "autogpt" ]
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments