Skip to content

Commit 1b1a28e

Browse files
committed
chore: update Node.js version to 18.20.2 and pnpm to 9.15.4 in Dockerfile and .nvmrc
1 parent ab1f6d5 commit 1b1a28e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PORT=4005
1+
PORT=4000
22
S3_BUCKET=test
33
S3_REGION=auto
44
S3_ENDPOINT=https://storage.vdaily.app

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.14.2
1+
18.20.2

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM node:16.14.2-alpine AS builder
1+
FROM node:18.20.2-alpine AS builder
22
RUN apk add --no-cache libc6-compat
3-
RUN npm i -g pnpm@8.2.0
3+
RUN npm i -g pnpm@9.15.4
44

55
# Create app directory
66
WORKDIR /app
@@ -11,9 +11,9 @@ RUN pnpm install
1111
COPY . .
1212
RUN npm run build
1313

14-
FROM node:16.14.2-alpine
14+
FROM node:18.20.2-alpine
1515
RUN apk add --no-cache libc6-compat
16-
RUN npm i -g pnpm@8.2.0
16+
RUN npm i -g pnpm@9.15.4
1717
WORKDIR /app
1818
COPY --from=builder /app/node_modules ./node_modules
1919
COPY --from=builder /app/package*.json ./

0 commit comments

Comments
 (0)