Skip to content

Commit 6443b91

Browse files
committed
change dockerfile node version to 18
1 parent b77c997 commit 6443b91

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

compose.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build
2-
FROM node:16 AS build
2+
FROM node:18 AS build
33

44
# Set the working directory in the container
55
WORKDIR /usr/src/app
@@ -20,7 +20,7 @@ RUN npm install -g typescript
2020
RUN tsc
2121

2222
# Stage 2: Run
23-
FROM node:16 AS production
23+
FROM node:18 AS production
2424

2525
# Set the working directory in the container
2626
WORKDIR /usr/src/app

0 commit comments

Comments
 (0)