Spaces:
Runtime error
Runtime error
alonsosilva
commited on
Commit
•
0f398c3
1
Parent(s):
2233f76
Update Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -1,10 +1,8 @@
|
|
1 |
FROM python:3.11
|
2 |
|
3 |
-
|
4 |
|
5 |
-
|
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 |
|