Skip to content

Commit

Permalink
Merge pull request #261 from ligangty/release
Browse files Browse the repository at this point in the history
Use fixed image tag instead of floating latest for Container file
  • Loading branch information
ligangty authored Aug 28, 2024
2 parents da74b38 + cb49295 commit a2838fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions image/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
# 4. Start using uploader
# charon upload/delete from /home/charon/upload/...
###
FROM registry.access.redhat.com/ubi8-minimal:latest as builder
FROM registry.access.redhat.com/ubi8-minimal:8.10-1052 as builder

ARG GIT_BRANCH=main
ARG GIT_BRANCH=release

RUN microdnf install -y git-core python3.12 python3.12-pip && microdnf clean all
RUN git clone -b ${GIT_BRANCH} --depth 1 https://github.com/Commonjava/charon.git
RUN pip3 install --no-cache-dir --upgrade pip
RUN pip3 wheel ./charon

FROM registry.access.redhat.com/ubi8-minimal:latest
FROM registry.access.redhat.com/ubi8-minimal:8.10-1052

ARG USER=charon
ARG UID=10000
Expand Down

0 comments on commit a2838fe

Please sign in to comment.