Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
-
FROM
|
| 2 |
-
python:3.9
|
| 3 |
|
| 4 |
WORKDIR $HOME/app
|
| 5 |
|
|
@@ -8,6 +7,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install gcc -y
|
|
| 8 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
| 9 |
RUN pip3 install numpy
|
| 10 |
RUN pip3 install cython==0.29.21
|
|
|
|
| 11 |
RUN apt-get update
|
| 12 |
RUN apt-get install --reinstall build-essential -y
|
| 13 |
RUN pip3 install pygco==0.0.16
|
|
|
|
| 1 |
+
FROM python:3.9
|
|
|
|
| 2 |
|
| 3 |
WORKDIR $HOME/app
|
| 4 |
|
|
|
|
| 7 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
| 8 |
RUN pip3 install numpy
|
| 9 |
RUN pip3 install cython==0.29.21
|
| 10 |
+
|
| 11 |
RUN apt-get update
|
| 12 |
RUN apt-get install --reinstall build-essential -y
|
| 13 |
RUN pip3 install pygco==0.0.16
|