Browse Source
Merge pull request #2526 from PeterDaveHello/Refactor_Dockerfile
Refactor Dockerfile
pull/3562/head
neil
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
5 deletions
-
Dockerfile
|
@ -1,7 +1,6 @@ |
|
|
FROM alpine:3.12 |
|
|
FROM alpine:3.12 |
|
|
|
|
|
|
|
|
RUN apk update -f \ |
|
|
|
|
|
&& apk --no-cache add -f \ |
|
|
|
|
|
|
|
|
RUN apk --no-cache add -f \ |
|
|
openssl \ |
|
|
openssl \ |
|
|
openssh-client \ |
|
|
openssh-client \ |
|
|
coreutils \ |
|
|
coreutils \ |
|
@ -12,8 +11,7 @@ RUN apk update -f \ |
|
|
tzdata \ |
|
|
tzdata \ |
|
|
oath-toolkit-oathtool \ |
|
|
oath-toolkit-oathtool \ |
|
|
tar \ |
|
|
tar \ |
|
|
libidn \ |
|
|
|
|
|
&& rm -rf /var/cache/apk/* |
|
|
|
|
|
|
|
|
libidn |
|
|
|
|
|
|
|
|
ENV LE_CONFIG_HOME /acme.sh |
|
|
ENV LE_CONFIG_HOME /acme.sh |
|
|
|
|
|
|
|
@ -22,7 +20,7 @@ ARG AUTO_UPGRADE=1 |
|
|
ENV AUTO_UPGRADE $AUTO_UPGRADE |
|
|
ENV AUTO_UPGRADE $AUTO_UPGRADE |
|
|
|
|
|
|
|
|
#Install |
|
|
#Install |
|
|
ADD ./ /install_acme.sh/ |
|
|
|
|
|
|
|
|
COPY ./ /install_acme.sh/ |
|
|
RUN cd /install_acme.sh && ([ -f /install_acme.sh/acme.sh ] && /install_acme.sh/acme.sh --install || curl https://get.acme.sh | sh) && rm -rf /install_acme.sh/ |
|
|
RUN cd /install_acme.sh && ([ -f /install_acme.sh/acme.sh ] && /install_acme.sh/acme.sh --install || curl https://get.acme.sh | sh) && rm -rf /install_acme.sh/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|