Jainam Jain commited on
Commit
018827e
1 Parent(s): d66de2b

DockerFile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -4,8 +4,9 @@ WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
- RUN sudo apt-get update
8
- RUN sudo apt-get install libgl1-mesa-glx
 
9
 
10
  RUN pip install --upgrade pip
11
 
 
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
+ RUN apt-get update && \
8
+ apt-get install -y python3 python3-pip libgl1-mesa-glx && \
9
+ rm -rf /var/lib/apt/lists/*
10
 
11
  RUN pip install --upgrade pip
12