Skip to content

Commit

Permalink
chore(deps): update node.js to v20
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 4, 2023
1 parent 64bedfb commit 12b70a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.16.0-alpine as builder
FROM node:20.1.0-alpine as builder
WORKDIR /app

COPY package.json yarn.lock ./
Expand All @@ -7,7 +7,7 @@ RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build

FROM node:18.16.0-alpine as runner
FROM node:20.1.0-alpine as runner
ENV NODE_ENV production
WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions scraper/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.16.0-alpine as builder
FROM node:20.1.0-alpine as builder
WORKDIR /app

COPY package.json yarn.lock ./
Expand All @@ -7,7 +7,7 @@ RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build

FROM node:18.16.0-alpine as runner
FROM node:20.1.0-alpine as runner
ENV NODE_ENV production

# Installs latest Chromium (92) package.
Expand Down

0 comments on commit 12b70a9

Please sign in to comment.