danielle-losos commited on
Commit
91d3939
·
verified ·
1 Parent(s): 00139a2

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -21
Dockerfile DELETED
@@ -1,21 +0,0 @@
1
- FROM jupyter/base-notebook:latest
2
-
3
- RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \
4
- fix-permissions "${CONDA_DIR}" && \
5
- fix-permissions "/home/${NB_USER}"
6
-
7
- COPY requirements.txt .
8
- RUN pip install -r requirements.txt
9
-
10
- RUN mkdir ./pages
11
- COPY /pages ./pages
12
-
13
- ENV PROJ_LIB='/opt/conda/share/proj'
14
-
15
- USER root
16
- RUN chown -R ${NB_UID} ${HOME}
17
- USER ${NB_USER}
18
-
19
- EXPOSE 8765
20
-
21
- CMD ["solara", "run", "./pages", "--host=0.0.0.0"]