Skip to content

Commit 6e1e5af

Browse files
committed
Docker 컨테이너의 node 버전을 20으로 변경
1 parent b1e556c commit 6e1e5af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Build stage
2-
FROM node:18-alpine as builder
2+
FROM node:20-alpine as builder
33
WORKDIR /conveyor
44
COPY . .
55
RUN yarn build
66

77
# Production stage
8-
FROM node:18-alpine
8+
FROM node:20-alpine
99
WORKDIR /conveyor
1010

1111
ENV LC_ALL C.UTF-8

0 commit comments

Comments
 (0)