Skip to content

Instantly share code, notes, and snippets.

@p-geon
Last active August 16, 2021 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save p-geon/516624d284d690740ab993effbeb561f to your computer and use it in GitHub Desktop.
Save p-geon/516624d284d690740ab993effbeb561f to your computer and use it in GitHub Desktop.
touch Makefile
touch Dockerfile
touch .gitignore
touch .dockerignore
touch requirements.txt
# gigignore
echo '.ipynb_checkoints' >> .gitignore
echo '__pycache__' >> .gitignore
# Docker
echo '*.*' >> .dockerignore
mkdir scripts
# with jupyter notebook
mkdir notebooks
# Dockerfile (choice)
https://github.com/p-geon/DockerBonsai/blob/main/python_tf-2.3.1-gpu/Dockerfile
https://github.com/p-geon/DockerBonsai/blob/main/python_37-base/Dockerfile
@p-geon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment