Merge pull request #1080 from zuohuadong/patch-6

use openssh-client not  openssh*
This commit is contained in:
Mahmoud Zalt 2017-08-08 09:03:55 +03:00 committed by GitHub
commit a3c66fdecf
1 changed files with 3 additions and 3 deletions

View File

@ -1,15 +1,15 @@
FROM alpine:3.4
FROM alpine:3.5
MAINTAINER Eric Pfeiffer <computerfr33k@users.noreply.github.com>
ENV caddy_version=0.10.3
ENV caddy_version=0.10.5
ARG plugins=http.git
LABEL caddy_version="$caddy_version" architecture="amd64"
RUN apk update \
&& apk upgrade \
&& apk add tar curl git openssh
&& apk add --no-cache openssh-client git tar curl
RUN curl --silent --show-error --fail --location \
--header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \