Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -22,9 +22,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 22 |
# Copy requirements first for better caching
|
| 23 |
COPY requirements.txt .
|
| 24 |
|
| 25 |
-
# Install Python dependencies
|
| 26 |
-
RUN pip install --no-cache-dir
|
| 27 |
-
pip install --no-cache-dir -r requirements.txt
|
| 28 |
|
| 29 |
# Copy application code
|
| 30 |
COPY app.py .
|
|
|
|
| 22 |
# Copy requirements first for better caching
|
| 23 |
COPY requirements.txt .
|
| 24 |
|
| 25 |
+
# Install Python dependencies
|
| 26 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 27 |
|
| 28 |
# Copy application code
|
| 29 |
COPY app.py .
|