cboettig commited on
Commit
0a063d9
Β·
1 Parent(s): 25d7546

:see_no_evil:

Browse files
Files changed (3) hide show
  1. Dockerfile +3 -1
  2. README.md +1 -1
  3. requirements.txt +6 -0
Dockerfile CHANGED
@@ -1,8 +1,10 @@
1
- FROM ghcr.io/boettiger-lab/k8s:latest
2
  WORKDIR /app
3
 
4
  COPY . .
5
 
 
 
6
  # huggingface uses port 7860 by default
7
  CMD streamlit run app.py \
8
  --server.address 0.0.0.0 \
 
1
+ FROM ghcr.io/boettiger-lab/nautilus:latest
2
  WORKDIR /app
3
 
4
  COPY . .
5
 
6
+ RUN pip install -r requirements.txt
7
+
8
  # huggingface uses port 7860 by default
9
  CMD streamlit run app.py \
10
  --server.address 0.0.0.0 \
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Streamlit Demo
3
  emoji: 🌍
4
  colorFrom: yellow
5
  colorTo: indigo
 
1
  ---
2
+ title: Redlining GBIF
3
  emoji: 🌍
4
  colorFrom: yellow
5
  colorTo: indigo
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ streamlit
2
+ altair
3
+ ibis-duckdb
4
+ leafmap
5
+ maplibre
6
+