Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.rh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9@sha256:2b9885962d0c94db92e5216011ecfe47d5b38195bb17cf58a39bfaec0f933574 as builder
FROM registry.redhat.io/ubi9@sha256:f9a905cb655db94303bb2a37f150256a4d24c5ef7da07071888b41b52b588e5b as builder

USER root

Expand All @@ -8,7 +8,7 @@ RUN mkdir /tmp/tuftool
COPY . /tmp/tuftool
RUN cd /tmp/tuftool && cargo build --release

FROM registry.access.redhat.com/ubi9/ubi:latest@sha256:38952545b5a9ddf145152f37b0da702d7d75fac1ddc52c5e14b03c7a77c51586 as deploy
FROM registry.access.redhat.com/ubi9/ubi:latest@sha256:edabf9436bb372addcca3537aa76111c7a1aba970f5e3b02e2e03bc72943612d as deploy

COPY --from=builder /tmp/tuftool/target/release/tuftool /usr/bin/

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.tuffer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9@sha256:2b9885962d0c94db92e5216011ecfe47d5b38195bb17cf58a39bfaec0f933574 as builder
FROM registry.redhat.io/ubi9@sha256:f9a905cb655db94303bb2a37f150256a4d24c5ef7da07071888b41b52b588e5b as builder

USER root

Expand All @@ -8,7 +8,7 @@ RUN mkdir /tmp/tuftool
COPY . /tmp/tuftool
RUN cd /tmp/tuftool && cargo build --release

FROM registry.access.redhat.com/ubi9/ubi:latest@sha256:38952545b5a9ddf145152f37b0da702d7d75fac1ddc52c5e14b03c7a77c51586 as deploy
FROM registry.access.redhat.com/ubi9/ubi:latest@sha256:edabf9436bb372addcca3537aa76111c7a1aba970f5e3b02e2e03bc72943612d as deploy

COPY --from=builder /tmp/tuftool/target/release/tuftool /usr/bin/

Expand Down
Loading