Spaces:
Build error
Build error
Initial dashboard deployment
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -12,8 +12,12 @@ WORKDIR /app
|
|
| 12 |
|
| 13 |
# Install Python deps
|
| 14 |
COPY requirements.txt .
|
|
|
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
|
|
|
|
|
|
|
|
|
|
| 17 |
# Copy application files
|
| 18 |
COPY data_pipeline.py .
|
| 19 |
COPY dashboard_helpers.py .
|
|
|
|
| 12 |
|
| 13 |
# Install Python deps
|
| 14 |
COPY requirements.txt .
|
| 15 |
+
RUN pip install --upgrade pip setuptools wheel
|
| 16 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 17 |
|
| 18 |
+
RUN python -c "import leafmap; print('leafmap installed')"
|
| 19 |
+
|
| 20 |
+
|
| 21 |
# Copy application files
|
| 22 |
COPY data_pipeline.py .
|
| 23 |
COPY dashboard_helpers.py .
|