Skip to content

Commit

Permalink
ci(docker): use Docker BuildKit
Browse files Browse the repository at this point in the history
Turns on Docker BuildKit in CI, which adds new features to the build environment. The most crucial part is that it's
faster, and allows for further performance optimisations.

Refs #390
  • Loading branch information
thewilkybarkid committed Jul 22, 2021
1 parent 3948007 commit d9c33c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy_prereview-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- develop

env:
DOCKER_BUILDKIT: 1

jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy_prereview-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- main

env:
DOCKER_BUILDKIT: 1

jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d9c33c6

Please sign in to comment.