From 4a31b2b153638b6295e0e51f2157c195d8400bf0 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Thu, 23 Sep 2021 20:39:28 +0200 Subject: [PATCH] Downgrade Talisman to v1.11.0 Overlooked that v1.22.0 was a preview anyway, there was a problem with entries in .talismanrc not correctly being considered. For some reason v1.11.0 didn't run in Alpine though, thus I switched to Ubuntu. Fixes #1 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1d4a597..e451c1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.13.6 +FROM ubuntu:20.04 -RUN apk update && apk add git +RUN apt update && apt install -y git -ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.22.0/talisman_linux_amd64", "/talisman"] +ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.11.0/talisman_linux_amd64", "/talisman"] RUN chmod +x /talisman COPY entrypoint.sh /entrypoint.sh