This commit is contained in:
2025-11-18 08:24:44 +01:00

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