Spaces:
Configuration error
Configuration error
Commit ·
6c8da4e
1
Parent(s): 583830f
copy requirements.txt
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
|
@@ -1,12 +1,11 @@
|
|
| 1 |
|
| 2 |
FROM python:3.12.2
|
| 3 |
|
|
|
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
WORKDIR /
|
| 9 |
|
|
|
|
| 10 |
|
| 11 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 12 |
|
|
|
|
| 1 |
|
| 2 |
FROM python:3.12.2
|
| 3 |
|
| 4 |
+
#COPY . .
|
| 5 |
|
| 6 |
+
WORKDIR /code
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
COPY ./requirements.txt /code/requirements.txt
|
| 9 |
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 11 |
|