Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Open
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 Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build in multiple stages so cleanup of transitive dependencies is easier
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:92b1d5747a93608b6adb64dfd54515c3c5a360802db4706765ff3d8470df6290 as builder
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 as builder
# Point to the default path used by cachi2-playground. For koflux
# this is /cachi2/output/deps/generic/
ARG CRATES_PATH="/tmp/output/deps/generic"
Expand All @@ -22,7 +22,7 @@ COPY lockfiles/requirements.txt .
RUN pip install -r requirements.txt

# final stage
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:92b1d5747a93608b6adb64dfd54515c3c5a360802db4706765ff3d8470df6290
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0
COPY --from=builder /venv /venv
WORKDIR /app
COPY hello.py key.txt message.txt .
Expand Down