Update Dockerfile

This commit is contained in:
CL TheDreWen
2025-11-04 19:02:54 +01:00
committed by GitHub
parent 2d52089d1d
commit f13eea1a22

View File

@@ -1,7 +1,11 @@
FROM node:22 FROM node:latest
COPY . . WORKDIR /app
RUN npm i COPY . /app
RUN npm i && \
npm run build && \
npm run register
CMD [ "npm", "run", "start" ] CMD [ "npm", "run", "start" ]