diff --git a/Dockerfile b/Dockerfile index 4333e8c..db2c4a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,8 @@ FROM node:20-alpine - WORKDIR /app - COPY package*.json ./ - RUN npm install - COPY . . - +RUN npm run build EXPOSE 3000 - -CMD ["npm", "start"] \ No newline at end of file +CMD ["node", ".output/server/index.mjs"] \ No newline at end of file