mapnstreets / Dockerfile
ahuang11's picture
Update Dockerfile
66b5344
raw
history blame contribute delete
379 Bytes
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