RamV commited on
Commit
0d31e0d
·
1 Parent(s): 13a819d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -13,8 +13,11 @@ RUN apt-get update && \
13
  DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip && \
14
  pip3 install --no-cache-dir -r /root/requirements.txt
15
 
16
- RUN pip install datasets==1.13.3 huggingface-hub==0.0.16
17
- docker build -t my-image-name --mount=type=bind,source="$(pwd)"/packages.txt,target=/root/packages.txt -f Dockerfile .
 
 
 
18
 
19
 
20
 
 
13
  DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip && \
14
  pip3 install --no-cache-dir -r /root/requirements.txt
15
 
16
+
17
+ RUN pip3 install datasets==1.14.0 huggingface-hub==0.12.1
18
+
19
+ docker build -t my-image-name --mount=type=bind,source="$(pwd)"/packages.txt,target=/root/packages.txt -f Dockerfile
20
+
21
 
22
 
23