mirror of
https://github.com/falcosecurity/falco.git
synced 2025-06-27 15:17:50 +00:00
fix(ci): load falco image before building falco-driver-loader
Signed-off-by: Luca Guerra <luca@guerra.sh>
This commit is contained in:
parent
92f884e070
commit
09b5cb7c7b
5
.github/workflows/reusable_build_docker.yaml
vendored
5
.github/workflows/reusable_build_docker.yaml
vendored
@ -57,6 +57,11 @@ jobs:
|
||||
docker.io/falcosecurity/falco:${{ inputs.arch }}-${{ inputs.tag }}
|
||||
outputs: type=docker,dest=/tmp/falco-${{ inputs.arch }}.tar
|
||||
|
||||
# The falcosecurity/falco image is required for the driver-loader image, so we need to load it
|
||||
- name: Load the falcosecurity/falco image
|
||||
run: |
|
||||
docker load --input /tmp/falco-${{ inputs.arch }}.tar
|
||||
|
||||
- name: Build falco-driver-loader image
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
|
@ -1,5 +1,5 @@
|
||||
ARG FALCO_IMAGE_TAG=latest
|
||||
FROM falcosecurity/falco:${FALCO_IMAGE_TAG}
|
||||
FROM docker.io/falcosecurity/falco:${FALCO_IMAGE_TAG}
|
||||
|
||||
LABEL maintainer="cncf-falco-dev@lists.cncf.io"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user