1
0
mirror of https://github.com/b4tman/armhf-alpine-qemu.git synced 2024-12-04 17:16:53 +00:00

use docker/build-push-action

This commit is contained in:
Dmitry Belyaev 2021-10-11 10:10:52 +03:00
parent b6b2fc3727
commit aa4a1dc7bd
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3

View File

@ -17,10 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag b4tman/armhf-alpine-qemu:test
- uses: actions/checkout@v2
- name: Build image
uses: docker/build-push-action@v2
with:
context: .
push: false
tags: b4tman/armhf-alpine-qemu:test
outputs: type=image,name=b4tman/armhf-alpine-qemu:test,push=false
- name: Test image
env:
DOCKER_BUILDKIT: 0
run: docker build -t tmp/test1 -f test/Dockerfile test
run: docker build --force-rm -t tmp/test1 -f test/Dockerfile test