From cc8d88a83d86732d159a3ffc166f3a942f135654 Mon Sep 17 00:00:00 2001 From: Christie Wilson Date: Thu, 4 Jun 2020 16:30:45 -0400 Subject: [PATCH] =?UTF-8?q?Pin=20to=20Alpine=203.11=20so=20upgrade=20doesn?= =?UTF-8?q?t=20try=20to=20delete=20/var/run=20=F0=9F=93=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We're not quite at the bottom of https://github.com/tektoncd/pipeline/issues/2738 but it seems like alpine 3.12 is having this problem and 3.11 is not. 3.12 seems to be still being updated which may be why we are seeing different behavior across runs using 3.12; for now pinning to 3.11 should be a way to be able to build our releases while we try to understand what's going on --- images/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/Dockerfile b/images/Dockerfile index 07a258d3fa4..4de1efea5cc 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.12 +FROM alpine:3.11 RUN apk add --update git openssh-client \ && apk update \