huathedev commited on
Commit
78c31a0
·
1 Parent(s): 05e392c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM python:3.9
3
  WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
- RUN apt-get update && apt-get upgrade -y && apt-get install gcc -y
7
  RUN pip install --no-cache-dir -r /code/requirements.txt
8
  RUN pip install numpy
9
  RUN pip install cython==0.29.21
 
3
  WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
+ RUN apt-get update && apt-get upgrade -y && apt-get install gcc -y && apt-get install libgl1
7
  RUN pip install --no-cache-dir -r /code/requirements.txt
8
  RUN pip install numpy
9
  RUN pip install cython==0.29.21