-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: make the Docker image smaller (#468)
* stop copying everything! * clean up and improve overall Docker workflow * stop running Docker tests in CI * rename CI workflow * shave an extra 27MB with `pip install --no-cache-dir ...` * shave an extra 75MB with Alpine image * chore: add missing variables in sample environment file * stop running Docker tests in Cloud Build * clean up and reformat `Makefile` * clean up `Makefile` and GitHub Worflows
- Loading branch information
Showing
8 changed files
with
121 additions
and
79 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Git | ||
.git | ||
.gitignore | ||
.gitattributes | ||
.github | ||
|
||
# Docker | ||
Dockerfile | ||
.dockerignore | ||
|
||
# Byte-compiled / optimized / DLL files | ||
**/__pycache__/ | ||
**/*.py[cod] | ||
|
||
build/ | ||
dist/ | ||
|
||
# Testing / Linting | ||
.mypy_cache/ | ||
.pytest_cache/ | ||
.pytype/ | ||
.ruff_cache/ | ||
.coverage | ||
tests/ | ||
|
||
# Documentation | ||
docs/ | ||
|
||
# Configuration | ||
.env | ||
|
||
# Virtual Environments | ||
.venv/ | ||
venv/ | ||
|
||
# VS Code | ||
.vscode/ | ||
|
||
# Cloud Build | ||
cloudbuild.yaml |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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