Skip to content

Instantly share code, notes, and snippets.

@biancarosa
Created June 18, 2019 15:01
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 biancarosa/89abff3b8e972965fd57c36f8daddb26 to your computer and use it in GitHub Desktop.
Save biancarosa/89abff3b8e972965fd57c36f8daddb26 to your computer and use it in GitHub Desktop.
Python Dockerfile
FROM python:3.7
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["gunicorn", "run:app", "-w", "4", "-b", "0.0.0.0:5000", "-t", "1000"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment