diff --git a/Dockerfile b/Dockerfile index 172c30ae..33a243e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,9 @@ COPY . . RUN npm run build && npm prune --omit=dev FROM node:20-slim +RUN apt-get update && apt-get install -y \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* WORKDIR /usr/src/app COPY --from=build /usr/src/app/node_modules node_modules COPY --from=build /usr/src/app/dist dist