diff options
author | Jeremy Lin <[email protected]> | 2023-01-22 01:01:02 -0800 |
---|---|---|
committer | Jeremy Lin <[email protected]> | 2023-01-24 13:11:12 -0800 |
commit | 2c6bd8c9dc67d3e0208e1873d8bf3fef6d8f9aa3 (patch) | |
tree | 52c5c353e1cdf1e1d7f412627239b73f88cd651a /.github | |
parent | 9366e3145231034040d7d2e0216070163d6d889f (diff) | |
download | vaultwarden-2c6bd8c9dc67d3e0208e1873d8bf3fef6d8f9aa3.tar.gz vaultwarden-2c6bd8c9dc67d3e0208e1873d8bf3fef6d8f9aa3.zip |
Rename `.buildx` Dockerfiles to `.buildkit`
This is a more accurate name, since these Dockerfiles require BuildKit, not Buildx.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b3690ceb..32f6abc0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,10 @@ jobs: ports: - 5000:5000 env: - DOCKER_BUILDKIT: 1 # Disabled for now, but we should look at this because it will speedup building! + # Use BuildKit (https://docs.docker.com/build/buildkit/) for better + # build performance and the ability to copy extended file attributes + # (e.g., for executable capabilities) across build phases. + DOCKER_BUILDKIT: 1 # DOCKER_REPO/secrets.DOCKERHUB_REPO needs to be 'index.docker.io/<user>/<repo>' DOCKER_REPO: ${{ secrets.DOCKERHUB_REPO }} SOURCE_COMMIT: ${{ github.sha }} |