From dd0c5a5f1009271e1454c0279efabf8dfb87063f Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sat, 23 Apr 2022 15:10:16 +0200 Subject: [PATCH] Chocolatey 1.1.0 --- image/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/image/Dockerfile b/image/Dockerfile index 415fdef..dd7a036 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -1,4 +1,4 @@ -ARG CHOCOLATEY_VERSION="0.11.1" +ARG CHOCOLATEY_VERSION="1.1.0" FROM mono:6.12 as builder RUN apt-get update \ @@ -19,12 +19,12 @@ WORKDIR /usr/local/src/choco RUN chmod +x build.sh zip.sh RUN ./build.sh -FROM alpine:3.14 +FROM alpine:3.15 LABEL maintainer="CrazyMax" COPY --from=builder /usr/local/src/choco/build_output/chocolatey /opt/chocolatey -RUN apk --update --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing add mono-dev \ +RUN apk --update --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing add mono-dev \ && apk --update --no-cache add -t build-dependencies ca-certificates \ && cert-sync /etc/ssl/certs/ca-certificates.crt \ && ln -sf /opt /opt/chocolatey/opt \