Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update alpine 3.9 to 3.15 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN \
RUN unzip /tmp/go-agent-20.8.0-12213.zip -d /
RUN mv /go-agent-20.8.0 /go-agent && chown -R ${UID}:0 /go-agent && chmod -R g=u /go-agent

FROM alpine:3.9
FROM alpine:3.15

LABEL gocd.version="20.8.0" \
description="GoCD agent based on alpine version 3.9" \
Expand All @@ -55,7 +55,7 @@ RUN \
# regardless of whatever dependencies get added
# add user to root group for gocd to work on openshift
adduser -D -u ${UID} -s /bin/bash -G root go && \
apk add --no-cache cyrus-sasl cyrus-sasl-plain && \
apk add --no-cache cyrus-sasl && \
apk --no-cache upgrade && \
apk add --no-cache nss git mercurial subversion openssh-client bash curl procps && \
# install glibc and zlib for adoptopenjdk && \
Expand Down