-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply an 'ignore by default' policy for the .dockerignore configuration file. Be specific about the copied files. Inject values for build-args by default on container-build rule. Show the last commit when running container-build. Signed-off-by: Alejandro Visiedo <[email protected]>
- Loading branch information
Showing
4 changed files
with
37 additions
and
15 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 |
---|---|---|
@@ -1,13 +1,28 @@ | ||
# Ignore /secrets directory content | ||
secrets | ||
|
||
# Ignore common directories | ||
.git | ||
bin | ||
node_modules | ||
.venv | ||
config/bonfire.yaml | ||
.npm | ||
.cache | ||
.devcontainer | ||
# Ignore by default | ||
** | ||
|
||
# Add exceptions | ||
!api | ||
api/.git | ||
!dist | ||
!babel.config.js | ||
!fec.config.js | ||
!jest.config.js | ||
!tsconfig.json | ||
!Makefile | ||
!openapitools.json | ||
!package.json | ||
!package-lock.json | ||
!requirements-dev.txt | ||
!requirements.txt | ||
!config/jest.setup.js | ||
!src | ||
!build/package/** | ||
|
||
# NOTE DO NOT ADD CHANGES AFTER THIS LINE | ||
|
||
# Specific ignore | ||
.docker | ||
.podman | ||
.kube | ||
|
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