Merge pull request #2698 from cgwalters/prow-ci-buildroot

ci/prow: Update to use new buildroot image
This commit is contained in:
Jonathan Lebon 2021-04-07 13:14:00 -04:00 committed by GitHub
commit 45a59fc7f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
FROM registry.ci.openshift.org/coreos/cosa-buildroot:latest as builder FROM quay.io/coreos-assembler/fcos-buildroot:testing-devel as builder
WORKDIR /src WORKDIR /src
COPY . . COPY . .
RUN ./ci/build.sh && make install DESTDIR=/cosa/component-install RUN ./ci/build.sh && make install DESTDIR=/cosa/component-install
@ -6,7 +6,7 @@ RUN make -C tests/kolainst install DESTDIR=/cosa/component-tests
# Uncomment this to fake a build to test the code below # Uncomment this to fake a build to test the code below
# RUN mkdir -p /cosa/component-install/usr/bin && echo foo > /cosa/component-install/usr/bin/foo # RUN mkdir -p /cosa/component-install/usr/bin && echo foo > /cosa/component-install/usr/bin/foo
FROM registry.ci.openshift.org/coreos/coreos-assembler:latest FROM quay.io/coreos-assembler/coreos-assembler:latest
WORKDIR /srv WORKDIR /srv
USER root USER root
# Copy binaries from the build # Copy binaries from the build