Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -14,10 +14,10 @@ RUN apt-get update && \
|
|
14 |
RUN cppcheck --version
|
15 |
|
16 |
# Copy the requirements file into the container at /app
|
17 |
-
|
18 |
|
19 |
# Install any needed packages specified in requirements.txt
|
20 |
-
|
21 |
|
22 |
# Copy the application script into the container at /app
|
23 |
COPY app.py .
|
|
|
14 |
RUN cppcheck --version
|
15 |
|
16 |
# Copy the requirements file into the container at /app
|
17 |
+
COPY requirements.txt .
|
18 |
|
19 |
# Install any needed packages specified in requirements.txt
|
20 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
21 |
|
22 |
# Copy the application script into the container at /app
|
23 |
COPY app.py .
|