Skip to content

Commit

Permalink
fix: docker image should use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Dec 5, 2024
1 parent b462295 commit af3d45a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Base Stage #
# ================ #

FROM node:22-bullseye-slim as base
FROM node:20-bullseye-slim AS base

WORKDIR /usr/src/app

Expand All @@ -29,7 +29,7 @@ ENTRYPOINT ["dumb-init", "--"]
# Builder Stage #
# ================ #

FROM base as builder
FROM base AS builder

ENV NODE_ENV="development"

Expand Down

0 comments on commit af3d45a

Please sign in to comment.