Skip to content

Instantly share code, notes, and snippets.

@smanurung
Created July 31, 2017 06:33
Show Gist options
  • Save smanurung/c59851ad211fe46fa2d8b80b932449a2 to your computer and use it in GitHub Desktop.
Save smanurung/c59851ad211fe46fa2d8b80b932449a2 to your computer and use it in GitHub Desktop.
Base docker image including python, conda, and supervisor
FROM python:2.7-slim
WORKDIR /Users/smanurung/Documents/lab/docker/iris-base/
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils
RUN yes | apt-get install bzip2
RUN apt-get install -y curl git supervisor
# # install miniconda for python dependency management
RUN curl "https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh" >> /tmp/miniconda.sh
RUN bash /tmp/miniconda.sh -b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment