Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -12,7 +12,7 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
| 12 |
WORKDIR /app
|
| 13 |
|
| 14 |
# Copy the requirements file from `api/` and install dependencies
|
| 15 |
-
COPY --chown=user api/
|
| 16 |
RUN pip install --no-cache-dir --upgrade -r requirement.txt
|
| 17 |
|
| 18 |
# Copy the full project after installing dependencies
|
|
|
|
| 12 |
WORKDIR /app
|
| 13 |
|
| 14 |
# Copy the requirements file from `api/` and install dependencies
|
| 15 |
+
COPY --chown=user api/requirement.txt .
|
| 16 |
RUN pip install --no-cache-dir --upgrade -r requirement.txt
|
| 17 |
|
| 18 |
# Copy the full project after installing dependencies
|