From e62b7f86330907312baab3b31b96f18e0f17f7c8 Mon Sep 17 00:00:00 2001 From: Johann Haaf Date: Mon, 1 Oct 2018 11:50:22 +0200 Subject: [PATCH] bugfix: fixes tar bug documented in https://github.com/coreos/bugs/issues/1095 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b9c17d1..561972d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM alpine:3.6 MAINTAINER felix.buenemann@gmail.com ARG DEIS_WORKFLOW_CLI_VERSION=v2.18.0 -RUN apk add --no-cache bash curl git jq openssh-client \ +RUN apk add --no-cache bash curl git jq openssh-client libarchive-tools \ + && ln -sf $(which bsdtar) $(which tar) \ && curl -fsSLO https://raw.githubusercontent.com/deis/deis.io/gh-pages/deis-cli/install-v2.sh \ && bash install-v2.sh $DEIS_WORKFLOW_CLI_VERSION \ && mv deis /usr/bin/ \