From a46527879c0350cd1dc0f0713b7d303241c7d69d Mon Sep 17 00:00:00 2001 From: docker-images Date: Sat, 23 Aug 2025 00:02:02 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 64579a3..be324f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +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 . CMD ["node", "run", "start"]