Skip to content

Commit

Permalink
Merge pull request #106 from oliv3340/renovate/node-20.x
Browse files Browse the repository at this point in the history
chore(deps): update node.js to v20.13.1
  • Loading branch information
oliv3340 authored May 10, 2024
2 parents 1d03322 + 301a250 commit b77ef47
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.12-alpine AS deps
FROM node:20.13-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.12-alpine AS builder
FROM node:20.13-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.12-alpine AS runner
FROM node:20.13-alpine AS runner
WORKDIR /app
ENV NODE_ENV production

Expand Down

0 comments on commit b77ef47

Please sign in to comment.