diff --git a/Dockerfile b/Dockerfile index ada913b..b68dced 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -- compilation -- -FROM node:22.12.0-alpine as build +FROM node:22.13.0-alpine as build WORKDIR /usr/src/app # install dependencies @@ -11,7 +11,7 @@ COPY . . RUN npm run build # -- execution -- -FROM node:22.12.0-alpine +FROM node:22.13.0-alpine WORKDIR /usr/src/app RUN apk add --no-cache tini