huathedev commited on
Commit
703fd4c
·
1 Parent(s): 2594aa0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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