Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -13,8 +13,8 @@ WORKDIR /app
|
|
13 |
COPY --chown=user ./requirements.txt /app/requirements.txt
|
14 |
|
15 |
# Install dependencies
|
16 |
-
RUN pip install --no-cache-dir --upgrade pip
|
17 |
-
|
18 |
|
19 |
# Copy the rest of the application code
|
20 |
COPY --chown=user . /app
|
|
|
13 |
COPY --chown=user ./requirements.txt /app/requirements.txt
|
14 |
|
15 |
# Install dependencies
|
16 |
+
RUN pip install --no-cache-dir --upgrade pip
|
17 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
18 |
|
19 |
# Copy the rest of the application code
|
20 |
COPY --chown=user . /app
|