Created
January 3, 2020 14:49
-
-
Save mhemrg/51af3fb19cd28887983a756063f7dd7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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