Compare commits
No commits in common. "main" and "2.504.1" have entirely different histories.
1 changed files with 5 additions and 6 deletions
|
@ -1,19 +1,18 @@
|
|||
FROM docker.io/alpine:3.22 AS builder
|
||||
FROM docker.io/alpine:3.21 AS builder
|
||||
|
||||
ENV VERSION=2.504.2
|
||||
ENV SHA256_SUM=e52347c01dd39116c364fb7ebab78d156bce8f6add28484ff571fe0d0faeabf6
|
||||
ENV VERSION=2.504.1
|
||||
ENV SHA256_SUM=81026db18b0c4aad6b62cf408e4c42e5797661b41c517b37df606238e89b9df1
|
||||
RUN wget -O jenkins.war https://get.jenkins.io/war-stable/$VERSION/jenkins.war
|
||||
RUN echo "$SHA256_SUM jenkins.war" | sha256sum -c - || exit 1
|
||||
|
||||
|
||||
FROM docker.io/alpine:3.22
|
||||
FROM docker.io/alpine:3.21
|
||||
|
||||
RUN adduser -h /app -D -u 2222 jenkins
|
||||
RUN apk --no-cache add \
|
||||
openjdk21 \
|
||||
fontconfig \
|
||||
font-dejavu \
|
||||
git
|
||||
font-dejavu
|
||||
|
||||
COPY --from=builder /jenkins.war /app/jenkins.war
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue