Skip to content

Commit f1148b9

Browse files
committed
chore(deps): update node.js to v18
1 parent 04ed522 commit f1148b9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

client/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:17-alpine AS deps
1+
FROM node:18-alpine AS deps
22

33
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
44
RUN apk add --no-cache libc6-compat
@@ -9,7 +9,7 @@ COPY package.json yarn.lock ./
99

1010
RUN yarn install --frozen-lockfile
1111

12-
FROM node:17-alpine AS builder
12+
FROM node:18-alpine AS builder
1313

1414
WORKDIR /app
1515

@@ -23,7 +23,7 @@ ENV API_URL=${API_URL:-http://localhost:3000}
2323

2424
RUN yarn build
2525

26-
FROM node:17-alpine AS runner
26+
FROM node:18-alpine AS runner
2727

2828
WORKDIR /app
2929

server/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:17-alpine AS deps
1+
FROM node:18-alpine AS deps
22

33
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
44
RUN apk add --no-cache libc6-compat git
@@ -9,7 +9,7 @@ COPY package.json yarn.lock tsconfig.json tslint.json ./
99

1010
RUN yarn install --frozen-lockfile
1111

12-
FROM node:17-alpine AS builder
12+
FROM node:18-alpine AS builder
1313

1414
WORKDIR /app
1515

@@ -23,7 +23,7 @@ ENV NODE_ENV=${NODE_ENV:-production}
2323
RUN apk add --no-cache git
2424
RUN yarn build:docker
2525

26-
FROM node:17-alpine AS runner
26+
FROM node:18-alpine AS runner
2727

2828
WORKDIR /app
2929

0 commit comments

Comments
 (0)