Update Dockerfile

This commit is contained in:
docker-images 2025-08-23 00:03:23 +02:00
commit 5175bf98b0

View file

@ -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"]