diff options
author | Stephan Walter <stephan@walter.name> | 2023-03-20 08:24:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 09:24:11 +0100 |
commit | 5cb63e2493c49bc2c3b9b355696e8dc26cdd0380 (patch) | |
tree | 5af406de078491ed10d5675c021a521df00319cd /.devops/full.Dockerfile | |
parent | da5303c1ea68aa19db829c634f1e10d08d409680 (diff) |
Add tqdm to Python requirements (#293)
* Add tqdm to Python requirements
* Remove torchvision torchaudio, add requests
Diffstat (limited to '.devops/full.Dockerfile')
-rw-r--r-- | .devops/full.Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devops/full.Dockerfile b/.devops/full.Dockerfile index 618cddd..2b3a20c 100644 --- a/.devops/full.Dockerfile +++ b/.devops/full.Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && \ apt-get install -y build-essential python3 python3-pip RUN pip install --upgrade pip setuptools wheel \ - && pip install torch torchvision torchaudio sentencepiece numpy + && pip install numpy requests sentencepiece torch tqdm WORKDIR /app @@ -14,4 +14,4 @@ COPY . . RUN make -ENTRYPOINT ["/app/.devops/tools.sh"]
\ No newline at end of file +ENTRYPOINT ["/app/.devops/tools.sh"] |