File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ pipeline {
3737 env. BUILDX_PUSH_TAGS_ACMESH_GOLANG = " -t docker.io/jc21/${ IMAGE} :acmesh-golang"
3838 env. BUILDX_PUSH_TAGS_CERTBOT_NODE = " -t docker.io/jc21/${ IMAGE} :certbot-node"
3939 }
40- sh ' env'
4140 }
4241 }
4342 stage(' Other' ) {
Original file line number Diff line number Diff line change 1- FROM golang:1.19.6 as go
1+ FROM golang:1.20 as go
22FROM jc21/nginx-full:${ACMESH_BASE_TAG:-acmesh}
33LABEL maintainer="Jamie Curnow <jc@jc21.com>"
44
@@ -30,7 +30,7 @@ WORKDIR /root
3030COPY ./files/.bashrc.acmesh-golang /root/.bashrc
3131
3232# Gotools
33- RUN cd /usr && wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.1
33+ RUN cd /usr && wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.2
3434RUN go install github.com/kyoh86/richgo@latest \
3535 && go install github.com/sonatype-nexus-community/nancy@latest \
3636 && go install github.com/mfridman/tparse@latest \
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ COPY ./files/.bashrc.certbot /root/.bashrc
6969COPY --from=certbotbuilder /opt/certbot /opt/certbot
7070RUN curl -L 'https://bootstrap.pypa.io/get-pip.py' | python3 \
7171 && python3 -m venv /opt/certbot/ \
72+ && sed -i 's/include-system-site-packages = false/include-system-site-packages = true/g' -i /opt/certbot/pyvenv.cfg \
7273 && ln -s /opt/certbot/bin/certbot /usr/bin/certbot
7374
7475LABEL org.label-schema.cmd="docker run --rm -ti jc21/nginx-full:certbot"
You can’t perform that action at this time.
0 commit comments