From 4fad5cd69b4298e24fff362c18646c24fd75eb57 Mon Sep 17 00:00:00 2001 From: Dmitry Kharitonov Date: Mon, 13 Nov 2023 12:30:24 +0400 Subject: [PATCH] deps: bump docker images Signed-off-by: Dmitry Kharitonov --- Dockerfile | 4 ++-- backend/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d381e95e8..f89a37b7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # BUILDPLATFORM is an automatic platform ARG enabled by Docker BuildKit. # Represents the plataform where the build is happening, do not mix with # TARGETARCH -FROM --platform=${BUILDPLATFORM} docker.io/library/node:18-alpine3.18@sha256:0fe7402d11d8c85474c6ec6f9c9c8048cd0549c95535832b7f0735a4b47690a5 as stage1 +FROM --platform=${BUILDPLATFORM} docker.io/library/node:18-alpine3.18@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d as stage1 RUN apk add bash WORKDIR /app @@ -26,5 +26,5 @@ COPY . . ARG NODE_ENV=production RUN npm run build -FROM docker.io/nginxinc/nginx-unprivileged:1.25-alpine3.18@sha256:30dce5d5e7a0afdf3dd49aad291d625cbdb4cf2d3f01d926772943e069054ca1 +FROM docker.io/nginxinc/nginx-unprivileged:1.25-alpine3.18@sha256:428e086ab26adf52ac6486ac525d5ad06122c1cb5e0a8e0e5e781c47dcf62996 COPY --from=stage1 /app/server/public /app diff --git a/backend/Dockerfile b/backend/Dockerfile index a5439c928..5f30c93f5 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -3,7 +3,7 @@ # Copyright 2021 Authors of Cilium # SPDX-License-Identifier: Apache-2.0 -ARG GOLANG_IMAGE=docker.io/library/golang:1.21-bullseye@sha256:26c7537d6ac3827eb4638034d16edc64de57bb011c8cc8fe301ac13a6568f6f4 +ARG GOLANG_IMAGE=docker.io/library/golang:1.21-bullseye@sha256:31848c4f02b08469e159ea1ee664a3f29602418b13e7d67dfd4560d169e14d55 # BUILDPLATFORM is an automatic platform ARG enabled by Docker BuildKit. # Represents the plataform where the build is happening, do not mix with @@ -27,7 +27,7 @@ COPY ./build-gops.sh . RUN --mount=target=/root/.cache,type=cache --mount=target=/go/pkg/mod,type=cache \ ./build-gops.sh -FROM docker.io/library/node:18-alpine3.18@sha256:0fe7402d11d8c85474c6ec6f9c9c8048cd0549c95535832b7f0735a4b47690a5 +FROM docker.io/library/node:18-alpine3.18@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d # TARGETOS is an automatic platform ARG enabled by Docker BuildKit. ARG TARGETOS # TARGETARCH is an automatic platform ARG enabled by Docker BuildKit.