aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Walter <stephan@walter.name>2023-03-20 08:24:11 +0000
committerGitHub <noreply@github.com>2023-03-20 09:24:11 +0100
commit5cb63e2493c49bc2c3b9b355696e8dc26cdd0380 (patch)
tree5af406de078491ed10d5675c021a521df00319cd
parentda5303c1ea68aa19db829c634f1e10d08d409680 (diff)
Add tqdm to Python requirements (#293)
* Add tqdm to Python requirements * Remove torchvision torchaudio, add requests
-rw-r--r--.devops/full.Dockerfile4
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"]