diff --git a/apps/infoalloggi/Dockerfile b/apps/infoalloggi/Dockerfile index 45d3066..54649ce 100644 --- a/apps/infoalloggi/Dockerfile +++ b/apps/infoalloggi/Dockerfile @@ -1,8 +1,9 @@ -FROM node:lts-bullseye AS base +FROM node:lts-alpine AS base # Dependencies stage # This stage is used to install dependencies and prepare the environment FROM base AS deps +RUN apk add --no-cache libc6-compat openssl WORKDIR /app COPY package*.json package-lock.json* ./ RUN npm ci