Skip to content

Instantly share code, notes, and snippets.

@vicotrbb
Created August 3, 2020 23:56
Show Gist options
  • Save vicotrbb/a9d40638e5f65e8a02d899bc0280dd0a to your computer and use it in GitHub Desktop.
Save vicotrbb/a9d40638e5f65e8a02d899bc0280dd0a to your computer and use it in GitHub Desktop.
FROM python:3
COPY . /work
WORKDIR /work
EXPOSE 5000
RUN pip install --no-cache-dir -r requirements.txt
CMD gunicorn --workers 2 --bind 0.0.0.0:5000 app:app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment