File size: 379 Bytes
66b5344
e8afe79
 
 
 
66b5344
 
e8afe79
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM continuumio/miniconda3

WORKDIR /code

COPY . .
RUN conda install -c conda-forge cartopy
RUN pip install panel geoviews holoviews geopandas shapely fugue duckdb datasets pyarrow

CMD ["panel", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860",  "--allow-websocket-origin", "*"]

RUN mkdir /.cache
RUN chmod 777 /.cache
RUN mkdir .chroma
RUN chmod 777 .chroma