Spaces:
Runtime error
Runtime error
changes
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
-
#WORKDIR
|
4 |
|
5 |
WORKDIR ./
|
6 |
|
7 |
-
COPY ./requirements.txt
|
8 |
|
9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
10 |
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
#WORKDIR code
|
4 |
|
5 |
WORKDIR ./
|
6 |
|
7 |
+
COPY ./requirements.txt ./requirements.txt
|
8 |
|
9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
10 |
|