diff --git a/Dockerfile b/Dockerfile index 0200858..67c233b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM node:25.2.1-bullseye-slim AS build +FROM node:25.3.0-bullseye-slim AS build RUN apt-get update && apt-get install -y --no-install-recommends dumb-init WORKDIR /usr/src/app COPY package*.json /usr/src/app/ RUN npm ci --only=production -FROM node:25.2.1-bullseye-slim +FROM node:25.3.0-bullseye-slim COPY --from=build /usr/bin/dumb-init /usr/bin/dumb-init USER node WORKDIR /usr/src/app