mjpsm commited on
Commit
04a59d8
·
verified ·
1 Parent(s): 06ac63c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -18,6 +18,11 @@ RUN pip install \
18
  --no-cache-dir \
19
  -r /app/requirements.txt
20
 
 
 
 
 
 
21
 
22
  COPY --chown=user:user . /app
23
 
 
18
  --no-cache-dir \
19
  -r /app/requirements.txt
20
 
21
+ RUN python -c "import transformers, huggingface_hub, torch; \
22
+ print('transformers:', transformers.__version__); \
23
+ print('huggingface_hub:', huggingface_hub.__version__); \
24
+ print('torch:', torch.__version__)"
25
+
26
 
27
  COPY --chown=user:user . /app
28