RamV commited on
Commit
0c02f93
·
1 Parent(s): 4b6b7c4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,7 +1,6 @@
1
  # Copy the package list and requirements file to the container
2
  COPY packages.txt requirements.txt /root/
3
 
4
- # Update the package list and install the packages listed in packages.txt
5
  RUN sed -i 's/http:\/\/deb.debian.org/http:\/\/cdn-aws.deb.debian.org/g' /etc/apt/sources.list && \
6
  sed -i 's/http:\/\/archive.ubuntu.com/http:\/\/us-east-1.ec2.archive.ubuntu.com/g' /etc/apt/sources.list && \
7
  sed -i '/security/d' /etc/apt/sources.list && \
@@ -19,3 +18,4 @@ docker build -t my-image-name --mount=type=bind,source="$(pwd)"/packages.txt,tar
19
 
20
 
21
 
 
 
1
  # Copy the package list and requirements file to the container
2
  COPY packages.txt requirements.txt /root/
3
 
 
4
  RUN sed -i 's/http:\/\/deb.debian.org/http:\/\/cdn-aws.deb.debian.org/g' /etc/apt/sources.list && \
5
  sed -i 's/http:\/\/archive.ubuntu.com/http:\/\/us-east-1.ec2.archive.ubuntu.com/g' /etc/apt/sources.list && \
6
  sed -i '/security/d' /etc/apt/sources.list && \
 
18
 
19
 
20
 
21
+