-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UPDATE] Updated Docker & requirements.txt (#672)
- Loading branch information
1 parent
0e25b61
commit 03bcafc
Showing
3 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM python:3.10 | ||
FROM python:3.11 | ||
|
||
COPY dev/requirements.txt setup/ | ||
|
||
RUN pip install -r setup/requirements.txt | ||
RUN pip install --upgrade pip && pip install -r setup/requirements.txt | ||
|
||
# Settuping the working environment. | ||
# Setting the working environment. | ||
# This will server as an empty directory where all the files be dropped to. | ||
WORKDIR /workdir/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters