1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-10 21:53:57 +00:00

Rename .buildx Dockerfiles to .buildkit

This is a more accurate name, since these Dockerfiles require BuildKit, not Buildx.
This commit is contained in:
Jeremy Lin 2023-01-22 01:01:02 -08:00
parent 9366e31452
commit 2c6bd8c9dc
No known key found for this signature in database
12 changed files with 10 additions and 7 deletions

View file

@ -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 }}