dockerfile patch

This commit is contained in:
Kevin Sträßler 2025-12-09 20:40:11 +01:00
parent c8297233de
commit debfae0c2e

View file

@ -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"]
CMD ["node", ".output/server/index.mjs"]