Skip to content

Commit

Permalink
Migrate from UBI8 to UBI9 (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
patchkez authored Sep 25, 2024
1 parent 3884a91 commit c430627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM registry.access.redhat.com/ubi8/go-toolset:latest as builder
FROM registry.access.redhat.com/ubi9/go-toolset:latest as builder
COPY --chown=default . .
ENV CGO_ENABLED=0
RUN ["go", "build", "-o", "config_manager", "."]

FROM registry.access.redhat.com/ubi8-minimal:latest
FROM registry.access.redhat.com/ubi9-minimal:latest
COPY ./playbooks ./playbooks
COPY --from=builder /opt/app-root/src/config_manager .
ENTRYPOINT ["./config_manager"]
Expand Down

0 comments on commit c430627

Please sign in to comment.