Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set up .dockerignore file #3433

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Byte-compiled / optimized / DLL files
**/*.py[cod]

# Python cache
**/__pycache__/
*.cache
.ipynb_checkpoints/

# Running files
.~lock*
*.swp

# Sphinx build files
docs/_build/
docs/build/

# Installation files
setup.log

# Virtual environments
env/
venv/
.env/
.venv/
PyBaMM-env/
pyvenv.cfg
.vscode/

# Linters and pre-commit hooks
.ruff_cache/

# Test runner venvs
.nox/
Loading