chomakov commited on
Commit
6cd06cc
1 Parent(s): 3f75331

Dockerfile >:|

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -1,8 +1,7 @@
1
  FROM python:3.10.10
2
 
3
- COPY ./requirements.txt /requirements.t×t
4
  RUN python3 -m pip install --no-cache-dir --upgrade pip
5
- RUN python3 -m pip install --no-cache-dir --upgrade -r /requirements.txt
6
 
7
  COPY . .
8
 
 
1
  FROM python:3.10.10
2
 
 
3
  RUN python3 -m pip install --no-cache-dir --upgrade pip
4
+ RUN python3 -m pip install --no-cache-dir --upgrade -r requirements.txt
5
 
6
  COPY . .
7