Skip to content

Instantly share code, notes, and snippets.

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