Skip to content

Instantly share code, notes, and snippets.

@bkatiemills
Last active September 7, 2021 14:45
Show Gist options
  • Save bkatiemills/9529412dcb1b986a3a5ca6ef915df2de to your computer and use it in GitHub Desktop.
Save bkatiemills/9529412dcb1b986a3a5ca6ef915df2de to your computer and use it in GitHub Desktop.
dockerfile for argovis tutorial
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