Spaces:
Sleeping
Sleeping
Commit ·
c5d4c4d
1
Parent(s): 5c62af5
Fix: Dockerfile now copies storage.py and index_calculator.py
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -12,8 +12,10 @@ RUN apt-get update && apt-get install -y \
|
|
| 12 |
COPY requirements.txt .
|
| 13 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 14 |
|
| 15 |
-
# Copy application files
|
| 16 |
COPY app.py .
|
|
|
|
|
|
|
| 17 |
COPY satellite_pipeline.py .
|
| 18 |
COPY auto_tuning_predictor.py .
|
| 19 |
COPY prediction_pipeline.py .
|
|
|
|
| 12 |
COPY requirements.txt .
|
| 13 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 14 |
|
| 15 |
+
# Copy ALL application files
|
| 16 |
COPY app.py .
|
| 17 |
+
COPY storage.py .
|
| 18 |
+
COPY index_calculator.py .
|
| 19 |
COPY satellite_pipeline.py .
|
| 20 |
COPY auto_tuning_predictor.py .
|
| 21 |
COPY prediction_pipeline.py .
|