januarevan commited on
Commit
d56d962
1 Parent(s): 8b0671e
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:3.10.8
2
 
3
  WORKDIR /app
4
 
5
- COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
8
 
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY requirements.txt /app/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
8