Node.js, pnpm 및 기타 의존성 버전 업데이트

- Node.js 18에서 Node.js 22로 업데이트하였습니다.
- pnpm 8에서 pnpm 9으로 업데이트하였습니다.
- 기타 의존성은 메이저 버전이 바뀌지 않는 선에서 최신 버전으로 업데이트하였습니다.
This commit is contained in:
static
2025-01-09 20:29:49 +09:00
parent 424ded8c9c
commit 045eb69487
3 changed files with 2521 additions and 2134 deletions

View File

@@ -1,8 +1,8 @@
# Base Image
FROM node:18-alpine AS base
FROM node:22-alpine AS base
WORKDIR /app
RUN npm install -g pnpm@8
RUN npm install -g pnpm@9
COPY pnpm-lock.yaml .
# Build Stage