1 Commits

Author SHA1 Message Date
ca6fca760d oci: Use Centos Stream rolling image 2026-06-09 19:45:17 +03:00

View File

@@ -4,7 +4,7 @@ COPY Cargo.toml Cargo.lock ./
COPY src ./src
RUN cargo build --release --bin yamlabyrinth
FROM registry.access.redhat.com/ubi10/ubi-minimal
FROM quay.io/centos/centos:stream10-minimal
COPY --from=builder /src/target/release/yamlabyrinth /usr/local/bin/yamlabyrinth
USER nobody
WORKDIR /tmp