Last active
September 7, 2021 14:45
-
-
Save bkatiemills/9529412dcb1b986a3a5ca6ef915df2de to your computer and use it in GitHub Desktop.
dockerfile for argovis tutorial
This file contains hidden or 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 python:3.6 | |
WORKDIR /usr/src/argo-database | |
COPY ./requirements.txt ./requirements.txt | |
RUN apt-get update && \ | |
apt-get --assume-yes install libhdf5-serial-dev netcdf-bin libnetcdf-dev nano | |
RUN pip install -r requirements.txt | |
RUN pip install wget==3.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment