Initial commit
ContainerImages/certs/pipeline/head This commit looks good Details

main
Dustin 2022-11-13 11:46:04 -06:00
commit 3bbab9ea40
2 changed files with 31 additions and 0 deletions

30
Containerfile Normal file
View File

@ -0,0 +1,30 @@
FROM alpine:3.15
RUN apk --no-cache add -f \
openssl \
openssh-client \
coreutils \
bind-tools \
curl \
sed \
socat \
tzdata \
oath-toolkit-oathtool \
tar \
libidn \
jq
RUN curl -fL -o /tmp/acme.sh https://raw.githubusercontent.com/acmesh-official/acme.sh/3.0.4/acme.sh && \
mkdir -p /usr/local/acme.sh && \
cd /tmp && \
sh acme.sh \
--install \
--home /usr/local/acme.sh \
--config-home /acme.sh \
--no-cron \
&& \
ln -s /usr/local/acme.sh/acme.sh /usr/local/bin/ && \
rm -f /tmp/acme.sh
RUN curl -L https://github.com/go-acme/lego/releases/download/v4.4.0/lego_v4.4.0_linux_amd64.tar.gz \
| tar -xz -C /usr/local/bin lego

1
Jenkinsfile vendored Normal file
View File

@ -0,0 +1 @@
buildContainerImage()