From 203c9abd449b20c58c70691cfa98025173d1f6d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Feb 2021 06:25:27 +0000 Subject: [PATCH] Bump alpine from 3.12 to 3.13.1 in /release/preview/alpine312/docker Bumps alpine from 3.12 to 3.13.1. Signed-off-by: dependabot[bot] --- release/preview/alpine312/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/preview/alpine312/docker/Dockerfile b/release/preview/alpine312/docker/Dockerfile index 659f3f22c..99a698b51 100644 --- a/release/preview/alpine312/docker/Dockerfile +++ b/release/preview/alpine312/docker/Dockerfile @@ -3,7 +3,7 @@ # Docker image file that describes an Alpine3.12 image with PowerShell installed from .tar.gz file(s) -FROM alpine:3.12 AS installer-env +FROM alpine:3.13.1 AS installer-env # Define Args for the needed to add the package ARG PS_VERSION=7.0.0-preview.1 @@ -24,7 +24,7 @@ RUN mkdir -p ${PS_INSTALL_FOLDER} RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v # Start a new stage so we lose all the tar.gz layers from the final image -FROM alpine:3.12.1 +FROM alpine:3.13.1 # Copy only the files we need from the previous stage COPY --from=installer-env ["/opt/microsoft/powershell", "/opt/microsoft/powershell"]