use openssh-client not openssh*

https://hub.docker.com/r/abiosoft/caddy/~/dockerfile/
This commit is contained in:
zuohuadong 2017-08-08 11:36:16 +08:00 committed by GitHub
parent 8e84fbbec2
commit 668acd66c1
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 - \