Last active
August 11, 2019 11:05
-
-
Save 771991673/ed9b36f65abcf113a72a99154f5b3f58 to your computer and use it in GitHub Desktop.
My Standard docker files
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
.git | |
.ipynb_checkpoints/* | |
/notebooks/* | |
/unused/* | |
Dockerfile | |
.DS_Store | |
.gitignore | |
README.md | |
env.* | |
/devops/* | |
# To prevent storing dev/temporary container data | |
*.csv | |
/tmp/* | |
/venv/* |
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.4-buster | |
ADD . /code | |
WORKDIR /code | |
RUN pip install -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