Spaces:
Sleeping
Sleeping
use barebone settings
Browse files- Dockerfile +5 -4
- pages/00_home.py +0 -3
Dockerfile
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
-
RUN
|
4 |
-
|
5 |
-
|
|
|
6 |
|
7 |
COPY requirements.txt .
|
8 |
RUN pip install -r requirements.txt
|
|
|
1 |
+
FROM python:3.11
|
2 |
|
3 |
+
RUN pip install -U "geemap[workshop]"
|
4 |
+
# RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \
|
5 |
+
# fix-permissions "${CONDA_DIR}" && \
|
6 |
+
# fix-permissions "/home/${NB_USER}"
|
7 |
|
8 |
COPY requirements.txt .
|
9 |
RUN pip install -r requirements.txt
|
pages/00_home.py
CHANGED
@@ -2,9 +2,6 @@ import ee
|
|
2 |
import geemap
|
3 |
import solara
|
4 |
|
5 |
-
import plotly.io as pio
|
6 |
-
pio.renderers.default='notebook_connected'
|
7 |
-
|
8 |
|
9 |
class Map(geemap.Map):
|
10 |
def __init__(self, **kwargs):
|
|
|
2 |
import geemap
|
3 |
import solara
|
4 |
|
|
|
|
|
|
|
5 |
|
6 |
class Map(geemap.Map):
|
7 |
def __init__(self, **kwargs):
|