Update docker workflow for new simple image
This commit is contained in:
parent
670fe4b701
commit
3a2635b9e1
1 changed files with 1 additions and 4 deletions
5
.github/workflows/build-docker.yaml
vendored
5
.github/workflows/build-docker.yaml
vendored
|
@ -11,10 +11,6 @@ jobs:
|
|||
name: Build and push Docker image
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: "true"
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
@ -33,6 +29,7 @@ jobs:
|
|||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
path: ./docker/simple/Dockerfile
|
||||
push: true # push to registry
|
||||
pull: true # always fetch the latest base images
|
||||
platforms: linux/amd64,linux/arm64 # build for both amd64 and arm64
|
||||
|
|
Loading…
Reference in a new issue