Update Dockerfile - AEGIS BIO LAB 10 CONDUCTOR
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -8,11 +8,11 @@ RUN apt-get update && apt-get install -y \
|
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Copy requirements and install Python dependencies
|
| 11 |
-
COPY
|
| 12 |
-
RUN pip install --no-cache-dir -r
|
| 13 |
|
| 14 |
# Copy application files
|
| 15 |
-
COPY
|
| 16 |
COPY templates/ templates/
|
| 17 |
|
| 18 |
# Create environment file template
|
|
|
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Copy requirements and install Python dependencies
|
| 11 |
+
COPY requirements.txt .
|
| 12 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 13 |
|
| 14 |
# Copy application files
|
| 15 |
+
COPY app.py .
|
| 16 |
COPY templates/ templates/
|
| 17 |
|
| 18 |
# Create environment file template
|