From 5175bf98b066d01e8bc01816e45e1231a9622fdf Mon Sep 17 00:00:00 2001 From: docker-images Date: Sat, 23 Aug 2025 00:03:23 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index be324f8..2ec878a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:alpine ENV NODE_ENV=production WORKDIR /usr/src/app COPY --chown=node:node . . -RUN apk add --no-cache python3 -RUN npm install . +RUN apk add --no-cache python3 make \ + && npm install . CMD ["node", "run", "start"]