Skip to content

Commit

Permalink
fix: pin node to 20.12
Browse files Browse the repository at this point in the history
  • Loading branch information
PhearZero committed May 9, 2024
1 parent 5b85c6f commit 6b04329
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:20-alpine AS BUILDER
FROM node:20.12-alpine AS BUILDER

COPY . .

RUN npm ci

RUN npm run build

FROM node:20-alpine
FROM node:20.12-alpine

# App Files
COPY --from=BUILDER ./node_modules ./node_modules
Expand Down
2 changes: 1 addition & 1 deletion Vite.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20.12-alpine

ADD . .

Expand Down

0 comments on commit 6b04329

Please sign in to comment.