Skip to content

Instantly share code, notes, and snippets.

@kristiewirth
Created February 4, 2019 19:28
Show Gist options
  • Save kristiewirth/2321470a63ff8329acba5a835b551739 to your computer and use it in GitHub Desktop.
Save kristiewirth/2321470a63ff8329acba5a835b551739 to your computer and use it in GitHub Desktop.
FROM python:3.6
COPY /requirements.txt /app/requirements.txt
COPY /src/app.py /app/src/app.py
WORKDIR /app/src
RUN pip install -r /app/requirements.txt
ENTRYPOINT ["python", "app.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment