Skip to content

Instantly share code, notes, and snippets.

@robertusnegoro
Created July 10, 2019 08:29
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 robertusnegoro/ebfb9c85050b8762c23eba6c78eac9b7 to your computer and use it in GitHub Desktop.
Save robertusnegoro/ebfb9c85050b8762c23eba6c78eac9b7 to your computer and use it in GitHub Desktop.
FROM python:3.7-alpine
ADD . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:8910", "app:app"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment