Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created January 3, 2020 14:49
Show Gist options
  • Save mhemrg/51af3fb19cd28887983a756063f7dd7e to your computer and use it in GitHub Desktop.
Save mhemrg/51af3fb19cd28887983a756063f7dd7e to your computer and use it in GitHub Desktop.
FROM python:3.7
WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y --no-install-recommends python-dev python3-dev build-essential
COPY . .
RUN pip install --disable-pip-version-check --no-cache-dir -r requirements.txt
CMD python app.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment