Skip to content

Instantly share code, notes, and snippets.

@thejungwon
Last active March 4, 2019 13:36
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 thejungwon/5169fb9cc613274f14faa6a5ef406cb5 to your computer and use it in GitHub Desktop.
Save thejungwon/5169fb9cc613274f14faa6a5ef406cb5 to your computer and use it in GitHub Desktop.
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
RUN chmod +x entry_point.sh
CMD [ "./entry_point.sh" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment