Kelbec commited on
Commit
59f44a2
1 Parent(s): 59d1a4a

change port

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -5
Dockerfile CHANGED
@@ -1,7 +1,5 @@
1
  FROM jupyter/base-notebook:latest
2
 
3
- ARG GITHUB_TOKEN
4
-
5
  RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \
6
  fix-permissions "${CONDA_DIR}" && \
7
  fix-permissions "/home/${NB_USER}"
@@ -9,7 +7,6 @@ RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \
9
  USER root
10
  RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
11
  RUN conda install -c conda-forge gdal
12
- RUN pip install keplergl
13
  COPY requirements.txt .
14
  RUN pip install -r requirements.txt
15
 
@@ -23,6 +20,6 @@ ENV PROJ_LIB='/opt/conda/share/proj'
23
  USER root
24
  RUN chown -R ${NB_UID} ${HOME}
25
  USER ${NB_USER}
26
- EXPOSE 8765
27
 
28
- CMD ["solara", "run", "./pages", "--host=0.0.0.0", "--port=8765"]
 
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}"
 
7
  USER root
8
  RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
9
  RUN conda install -c conda-forge gdal
 
10
  COPY requirements.txt .
11
  RUN pip install -r requirements.txt
12
 
 
20
  USER root
21
  RUN chown -R ${NB_UID} ${HOME}
22
  USER ${NB_USER}
23
+ EXPOSE 7860
24
 
25
+ CMD ["solara", "run", "./pages", "--host=0.0.0.0", "--port=7860"]