Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -18,7 +18,7 @@ COPY app.py /app/
|
|
| 18 |
COPY fresh_model.keras /app/
|
| 19 |
|
| 20 |
# Install dependencies
|
| 21 |
-
RUN pip install -r requirements.txt
|
| 22 |
RUN pip install --upgrade tensorflow keras
|
| 23 |
|
| 24 |
# Expose the port
|
|
|
|
| 18 |
COPY fresh_model.keras /app/
|
| 19 |
|
| 20 |
# Install dependencies
|
| 21 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 22 |
RUN pip install --upgrade tensorflow keras
|
| 23 |
|
| 24 |
# Expose the port
|