diff --git a/Dockerfile b/Dockerfile index 598a8f1..7c96bf4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ] \ No newline at end of file