Skip to content

Instantly share code, notes, and snippets.

@minrk
Created February 1, 2018 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minrk/7d234cbcf69df2c7cd68523c9327db71 to your computer and use it in GitHub Desktop.
Save minrk/7d234cbcf69df2c7cd68523c9327db71 to your computer and use it in GitHub Desktop.
FROM continuumio/miniconda3:4.3.27
# COPY environment.yml environment.yml
RUN conda install -y conda==4.4.8
RUN conda info
RUN conda list
COPY nopython.yml nopython.yml
COPY withpython.yml withpython.yml
RUN conda env update -n root -f nopython.yml \
&& conda env update -n root -f withpython.yml \
dependencies:
- pip=9
- pip:
- wheel
dependencies:
- python=3.5
- pip=9
- pip:
- wheel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment