Skip to content

Commit

Permalink
Merge pull request #499 from dusdjhyeon/ubi-migration
Browse files Browse the repository at this point in the history
UBI migration of Images - chaos-operator
  • Loading branch information
Jonsy13 authored Aug 6, 2024
2 parents bb7ea39 + 77a6191 commit 0b10874
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ RUN go env
RUN CGO_ENABLED=0 go build -buildvcs=false -o /output/chaos-operator -v ./main.go

# Packaging stage
# Image source: https://github.com/litmuschaos/test-tools/blob/master/custom/hardened-alpine/infra/Dockerfile
# The base image is non-root (have litmus user) with default litmus directory.
FROM litmuschaos/infra-alpine
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4

LABEL maintainer="LitmusChaos"

ENV OPERATOR=/usr/local/bin/chaos-operator

COPY --from=builder /output/chaos-operator ${OPERATOR}
RUN chown 65534:0 ${OPERATOR} && chmod 755 ${OPERATOR}

USER 65534

ENTRYPOINT ["/usr/local/bin/chaos-operator"]

0 comments on commit 0b10874

Please sign in to comment.