Skip to content

Commit a2838fe

Browse files
authored
Merge pull request #261 from ligangty/release
Use fixed image tag instead of floating latest for Container file
2 parents da74b38 + cb49295 commit a2838fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

image/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
# 4. Start using uploader
2020
# charon upload/delete from /home/charon/upload/...
2121
###
22-
FROM registry.access.redhat.com/ubi8-minimal:latest as builder
22+
FROM registry.access.redhat.com/ubi8-minimal:8.10-1052 as builder
2323

24-
ARG GIT_BRANCH=main
24+
ARG GIT_BRANCH=release
2525

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

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

3333
ARG USER=charon
3434
ARG UID=10000

0 commit comments

Comments
 (0)