HugoVoxx commited on
Commit
ade6e01
·
verified ·
1 Parent(s): 515df9d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -2,8 +2,7 @@ FROM python:3.10
2
 
3
  WORKDIR /code
4
 
5
- COPY ./pre-requirements.txt /code/pre-requirements.txt
6
- COPY ./requirements.txt /code/requirements.txt
7
 
8
  RUN pip install --no-cache-dir --require-hashes --no-deps -r /code/pre-requirements.txt
9
  RUN pip install --no-cache-dir --no-deps -r /code/requirements.txt
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY . /code/
 
6
 
7
  RUN pip install --no-cache-dir --require-hashes --no-deps -r /code/pre-requirements.txt
8
  RUN pip install --no-cache-dir --no-deps -r /code/requirements.txt