* feat: Use hybrid approach depending on runner * Fix tag * Update dist * Add fetch depth to test * Add dependcy on docker-build job for test action * Improve branch extraction naming, add npm scripts to bump docker tags * Pass inputs along * Run tests on workflow_run completed * Update workflow run trigger * Fix fetch-depth * Update comment * Update workflow naming * Update workflow names * Merge test.yml into build.yml to run tests after building * Always install node/npm on non Linux runners, update development docs * Fail the job if docker tag matches MAJOR.MINOR.PATCH naming * Some cleanup * Test with major.minor.patch tag * Rework error message * Update development doc * Add logic to commit `master` docker tag on master runs * Allow linting in parallel * Add pre-commit to the repo * Add Makefile to install pre-commit and yarrn deps * Skip pre-commit in action when committing the master tag back * Add note on `yarn set-docker-tag-from-branch` to development doc * Add formatting and linting to pre-commit * Mark e2e tests in build.yml better * Don't pass filenames to local hooks, fix dockerfile casing * Add changelog
10 lines
417 B
Plaintext
10 lines
417 B
Plaintext
# Docs: https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
# These files will be ignore by Docker for COPY and ADD commands when creating a build context
|
|
# In other words, if a file should not be inside of the Docker container it should be
|
|
# added to the list, otherwise, it will invalidate cache layers and have to rebuild
|
|
# all layers after a COPY command
|
|
.git
|
|
.github
|
|
Dockerfile
|
|
.dockerignore
|
|
*.md |