diff --git a/Dockerfile b/Dockerfile index 0fbc316..ae44460 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # The Licensed Work is (c) 2023 Sygma # SPDX-License-Identifier: LGPL-3.0-only -FROM node:18-alpine AS builder +FROM node:18.15-alpine AS builder # update packages RUN apk update @@ -29,7 +29,7 @@ RUN yarn prisma:generate RUN yarn build -FROM node:18-alpine +FROM node:18.15-alpine COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/package*.json ./ COPY --from=builder /app/build ./build diff --git a/Dockerfile.api b/Dockerfile.api index a4b3ce4..9f54357 100644 --- a/Dockerfile.api +++ b/Dockerfile.api @@ -1,6 +1,6 @@ # The Licensed Work is (c) 2023 Sygma # SPDX-License-Identifier: LGPL-3.0-only -FROM node:18-alpine AS builder +FROM node:18.15-alpine AS builder # update packages RUN apk update @@ -30,7 +30,7 @@ RUN yarn prisma:generate RUN yarn build -FROM node:18-alpine +FROM node:18.15-alpine COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/package*.json ./ COPY --from=builder /app/build ./build