Spaces:
Sleeping
Sleeping
corrected dockerfile again
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
WORKDIR /app
|
| 3 |
|
| 4 |
-
COPY requirements.txt requirements-convert.txt ./
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt \
|
| 6 |
&& pip install --no-cache-dir -r requirements-convert.txt --extra-index-url https://download.pytorch.org/whl/cpu
|
| 7 |
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
WORKDIR /app
|
| 3 |
|
| 4 |
+
COPY backend/requirements.txt backend/requirements-convert.txt ./
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt \
|
| 6 |
&& pip install --no-cache-dir -r requirements-convert.txt --extra-index-url https://download.pytorch.org/whl/cpu
|
| 7 |
|