mirror of
https://github.com/falcosecurity/falco.git
synced 2025-06-27 23:27:20 +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
7
.github/workflows/reusable_build_docker.yaml
vendored
7
.github/workflows/reusable_build_docker.yaml
vendored
@ -56,7 +56,12 @@ jobs:
|
|||||||
tags: |
|
tags: |
|
||||||
docker.io/falcosecurity/falco:${{ inputs.arch }}-${{ inputs.tag }}
|
docker.io/falcosecurity/falco:${{ inputs.arch }}-${{ inputs.tag }}
|
||||||
outputs: type=docker,dest=/tmp/falco-${{ inputs.arch }}.tar
|
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
|
- name: Build falco-driver-loader image
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
ARG FALCO_IMAGE_TAG=latest
|
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"
|
LABEL maintainer="cncf-falco-dev@lists.cncf.io"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user