cmande62 commited on
Commit
b6debdb
·
1 Parent(s): d77a6bf

Initial dashboard deployment

Browse files
Files changed (1) hide show
  1. 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 .