Skip to content

Commit

Permalink
Merge pull request #69 from harness/CI-14173
Browse files Browse the repository at this point in the history
feat: [CI-14173]: Upgraded the alpine version in the docker files.
  • Loading branch information
Ompragash authored Oct 4, 2024
2 parents 59c65ad + 139313b commit 80c6333
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.17 as alpine
FROM alpine:3.20 as alpine
RUN apk add -U --no-cache ca-certificates

FROM alpine:3.17
FROM alpine:3.20
ENV GODEBUG netdns=go
ENV CI=true
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
Expand All @@ -10,7 +10,7 @@ COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
RUN apk add --update \
curl \
&& rm -rf /var/cache/apk/*
RUN curl -fL https://getcli.jfrog.io/v2-jf | sh /dev/stdin 2.52.9
RUN curl -fL https://getcli.jfrog.io/v2-jf | sh /dev/stdin 2.68.0
RUN mv ./jf /usr/local/bin/jfrog
RUN chmod +x /usr/local/bin/jfrog

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM arm64v8/alpine:3.12 as alpine
FROM arm64v8/alpine:3.20 as alpine
RUN apk add -U --no-cache ca-certificates


FROM arm64v8/alpine:3.12
FROM arm64v8/alpine:3.20

ENV GODEBUG netdns=go
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
Expand Down

0 comments on commit 80c6333

Please sign in to comment.