Skip to content

Instantly share code, notes, and snippets.

@luisnaranjo733
Created March 29, 2017 01:07
Show Gist options
  • Select an option

  • Save luisnaranjo733/8978330fc39d37a9f31fe94341b647ae to your computer and use it in GitHub Desktop.

Select an option

Save luisnaranjo733/8978330fc39d37a9f31fe94341b647ae to your computer and use it in GitHub Desktop.
web dockerfile
FROM python:3.6
ENV PYTHONUNBUFFERED 1
RUN mkdir /config
ADD /config/requirements.txt /config/
RUN pip install -r /config/requirements.txt
RUN mkdir /src;
WORKDIR /src
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment