Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -3,7 +3,7 @@ FROM python:3.9-slim
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
-
RUN apt-get update && apt-get upgrade -y && apt-get install gcc
|
7 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
8 |
RUN pip3 install numpy
|
9 |
RUN pip3 install cython==0.29.21
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
+
RUN apt-get update && apt-get upgrade -y && apt-get install gcc -y
|
7 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
8 |
RUN pip3 install numpy
|
9 |
RUN pip3 install cython==0.29.21
|