RamV commited on
Commit
9179c2a
·
1 Parent(s): 92f7d95

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -8,8 +8,9 @@ RUN sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/so
8
  sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && \
9
  sed -i '/security/d' /etc/apt/sources.list && \
10
  apt-get update && \
11
- xargs -r -a /root/packages.txt apt-get install -y && \
12
- rm -rf /var/lib/apt/lists/*
 
13
 
14
  # Install Python and the packages listed in requirements.txt
15
  RUN apt-get update && \
 
8
  sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && \
9
  sed -i '/security/d' /etc/apt/sources.list && \
10
  apt-get update && \
11
+ apt-get install -y python3 python3-pip python3-protobuf python3-click && \
12
+ pip3 install --no-cache-dir datasets==1.14.0 huggingface-hub==0.12.1
13
+
14
 
15
  # Install Python and the packages listed in requirements.txt
16
  RUN apt-get update && \