Skip to content

Commit

Permalink
chore(deps): update node.js to v20.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 24, 2024
1 parent 7e84c01 commit dc58d75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Install dependencies only when needed
FROM node:20.13-alpine AS deps
FROM node:20.16-alpine AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
RUN yarn add sharp --ignore-engines

# Rebuild the source code only when needed
FROM node:20.13-alpine AS builder
FROM node:20.16-alpine AS builder

WORKDIR /app

Expand All @@ -18,7 +18,7 @@ COPY . .
RUN yarn build

# Production image, copy all the files and run next
FROM node:20.13-alpine AS runner
FROM node:20.16-alpine AS runner
WORKDIR /app
ENV NODE_ENV production

Expand Down

0 comments on commit dc58d75

Please sign in to comment.