huathedev commited on
Commit
27c82e9
·
1 Parent(s): cffb5d8

Update Dockerfile

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