File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ pipeline {
37
37
env. BUILDX_PUSH_TAGS_ACMESH_GOLANG = " -t docker.io/jc21/${ IMAGE} :acmesh-golang"
38
38
env. BUILDX_PUSH_TAGS_CERTBOT_NODE = " -t docker.io/jc21/${ IMAGE} :certbot-node"
39
39
}
40
- sh ' env'
41
40
}
42
41
}
43
42
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
2
2
FROM jc21/nginx-full:${ACMESH_BASE_TAG:-acmesh}
3
3
LABEL maintainer="Jamie Curnow <
[email protected] >"
4
4
@@ -30,7 +30,7 @@ WORKDIR /root
30
30
COPY ./files/.bashrc.acmesh-golang /root/.bashrc
31
31
32
32
# 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
34
34
RUN go install github.com/kyoh86/richgo@latest \
35
35
&& go install github.com/sonatype-nexus-community/nancy@latest \
36
36
&& 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
69
69
COPY --from=certbotbuilder /opt/certbot /opt/certbot
70
70
RUN curl -L 'https://bootstrap.pypa.io/get-pip.py' | python3 \
71
71
&& 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 \
72
73
&& ln -s /opt/certbot/bin/certbot /usr/bin/certbot
73
74
74
75
LABEL org.label-schema.cmd="docker run --rm -ti jc21/nginx-full:certbot"
You can’t perform that action at this time.
0 commit comments