Skip to content

Commit

Permalink
chore: fixed docker base version 20-alpine
Browse files Browse the repository at this point in the history
Signed-off-by: BobDu <[email protected]>
  • Loading branch information
BobDu committed Mar 2, 2024
1 parent 804897c commit 28c89f5
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,5 +1,5 @@
# build front-end
FROM node:lts-alpine AS frontend
FROM node:20-alpine AS frontend

ARG GIT_COMMIT_HASH=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ARG RELEASE_VERSION=v0.0.0
Expand All @@ -22,7 +22,7 @@ COPY . /app
RUN pnpm run build

# build backend
FROM node:lts-alpine as backend
FROM node:20-alpine as backend

RUN npm install pnpm -g

Expand All @@ -39,7 +39,7 @@ COPY /service /app
RUN pnpm build

# service
FROM node:lts-alpine
FROM node:20-alpine

RUN npm install pnpm -g

Expand Down

0 comments on commit 28c89f5

Please sign in to comment.