Created
March 29, 2022 14:27
-
-
Save magicrobotmonkey/e79ddc10f3344d6d8c11bb717c971298 to your computer and use it in GitHub Desktop.
mapa docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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