diff --git a/victim-loss-identifier/Dockerfile b/victim-loss-identifier/Dockerfile index 4aee1e0b4..863e367fe 100644 --- a/victim-loss-identifier/Dockerfile +++ b/victim-loss-identifier/Dockerfile @@ -1,12 +1,12 @@ # Build stage: compile Typescript to Javascript -FROM node:bullseye AS builder +FROM node:22.11.0-bullseye AS builder WORKDIR /app COPY . . RUN npm ci RUN npm run build # Final stage: copy compiled Javascript from previous stage and install production dependencies -FROM node:bullseye +FROM node:22.11.0-bullseye ENV NODE_ENV=production # Uncomment the following line to enable agent logging LABEL "network.forta.settings.agent-logs.enable"="true"