alonsosilva commited on
Commit
0f398c3
1 Parent(s): 2233f76

Update Dockerfile

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