Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -3,13 +3,14 @@ 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
|
10 |
|
11 |
RUN apt-get update
|
12 |
RUN apt-get install --reinstall build-essential -y
|
|
|
13 |
RUN pip install pygco==0.0.16
|
14 |
|
15 |
RUN useradd -m -u 1000 user
|
|
|
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
|
10 |
|
11 |
RUN apt-get update
|
12 |
RUN apt-get install --reinstall build-essential -y
|
13 |
+
RUN apt-get install libgl1
|
14 |
RUN pip install pygco==0.0.16
|
15 |
|
16 |
RUN useradd -m -u 1000 user
|