Skip to content

Commit

Permalink
feat: update packages and node
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewHanasiro committed Dec 14, 2024
1 parent 029b32c commit fd6c9a0
Show file tree
Hide file tree
Showing 4 changed files with 3,149 additions and 3,036 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.14.0
22.12
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM node:20.14.0-slim AS dependency
FROM node:22.12.0-slim AS dependency
WORKDIR /app
COPY . .
RUN npm ci

FROM node:20.14.0-slim AS builder
FROM node:22.12.0-slim AS builder
WORKDIR /app
COPY . .
COPY --from=dependency /app/node_modules ./node_modules
RUN npm run build

FROM node:20.14.0-slim AS deploy
FROM node:22.12.0-slim AS deploy
WORKDIR /app
COPY --from=dependency /app/node_modules ./node_modules
COPY --from=builder /app/build ./build
Expand Down
Loading

0 comments on commit fd6c9a0

Please sign in to comment.