Skip to content

Instantly share code, notes, and snippets.

@magicrobotmonkey
Created March 29, 2022 14:27
Show Gist options
  • Save magicrobotmonkey/e79ddc10f3344d6d8c11bb717c971298 to your computer and use it in GitHub Desktop.
Save magicrobotmonkey/e79ddc10f3344d6d8c11bb717c971298 to your computer and use it in GitHub Desktop.
mapa docker
FROM osgeo/gdal:ubuntu-small-latest
RUN apt-get update && \
apt-get install -y python3-dev python3-pip
RUN pip install --upgrade pip
RUN pip install wheel
RUN pip install mapa
ENTRYPOINT jupyter notebook /usr/local/lib/python3.8/dist-packages/mapa/mapa.ipynb --allow-root --ip 0.0.0.0
# docker run --rm -it -p 8888:8888 mapa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment