From 1379b4ab65ee3b798ebcbf78acbe007671973c8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 18:57:42 +0000 Subject: [PATCH] Bump alpine from 3.19.0 to 3.19.1 Bumps alpine from 3.19.0 to 3.19.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 95b1bf9..688b6de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN rm /app/build/distributions/mahjong-points.js.map #************************************** # local build only -FROM alpine:3.19.0 AS local-postinstall +FROM alpine:3.19.1 AS local-postinstall WORKDIR /app RUN apk update \ && apk add lighttpd \ @@ -40,7 +40,7 @@ RUN apk update \ COPY --from=TEMP_BUILD_IMAGE /app/build/distributions /var/www/localhost/htdocs # github action only -FROM alpine:3.19.0 AS github-postinstall +FROM alpine:3.19.1 AS github-postinstall WORKDIR /app RUN apk update \ && apk add lighttpd \