From 84c54d723b97b771c27106c3dca9746f3cd47120 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Aug 2023 18:10:29 +0000 Subject: [PATCH] Bump alpine from 3.18.2 to 3.18.3 Bumps alpine from 3.18.2 to 3.18.3. --- 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 fc7ed5f..48968cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN rm /app/build/distributions/mahjong-points.js.map #************************************** # local build only -FROM alpine:3.18.2 AS local-postinstall +FROM alpine:3.18.3 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.18.2 AS github-postinstall +FROM alpine:3.18.3 AS github-postinstall WORKDIR /app RUN apk update \ && apk add lighttpd \