Skip to content

Commit

Permalink
use node 20.12.2-alpine3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
holdan-8 committed Apr 11, 2024
1 parent e186fb5 commit aba84b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.12.2-alpine3.17 as backendBuild
FROM node:20.12.2-alpine3.18 as backendBuild
LABEL stage=build
ENV NODE_ENV=PRODUCTION

Expand All @@ -10,7 +10,7 @@ RUN npm install

RUN npm run build

FROM node:20.12.2-alpine3.17 as frontendBuild
FROM node:20.12.2-alpine3.18 as frontendBuild
LABEL stage=build
ENV NODE_ENV=PRODUCTION

Expand All @@ -24,7 +24,7 @@ RUN npm install

RUN npm run build:prod

FROM node:20.12.2-alpine3.17 as prod
FROM node:20.12.2-alpine3.18 as prod

COPY --from=backendBuild dist dist

Expand Down

0 comments on commit aba84b0

Please sign in to comment.