Initial commit
ContainerImages/certs/pipeline/head This commit looks good
Details
ContainerImages/certs/pipeline/head This commit looks good
Details
commit
3bbab9ea40
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
buildContainerImage()
|
Loading…
Reference in New Issue