Skip to content

Commit 0419434

Browse files
authored
Merge branch 'NginxProxyManager:master' into master
2 parents d14b7cb + 106a63c commit 0419434

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.jenkins/Jenkinsfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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') {

docker/Dockerfile.acmesh-golang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19.6 as go
1+
FROM golang:1.20 as go
22
FROM jc21/nginx-full:${ACMESH_BASE_TAG:-acmesh}
33
LABEL maintainer="Jamie Curnow <[email protected]>"
44

@@ -30,7 +30,7 @@ WORKDIR /root
3030
COPY ./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
3434
RUN 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 \

docker/Dockerfile.certbot

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ COPY ./files/.bashrc.certbot /root/.bashrc
6969
COPY --from=certbotbuilder /opt/certbot /opt/certbot
7070
RUN 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

7475
LABEL org.label-schema.cmd="docker run --rm -ti jc21/nginx-full:certbot"

0 commit comments

Comments
 (0)