FEAT: switch to vite vue stack

This commit is contained in:
prosety
2022-11-25 19:27:48 +01:00
parent 2c4a48e1a6
commit 41fb802318
56 changed files with 3523 additions and 9631 deletions

View File

@@ -2,12 +2,12 @@ FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json /app/
RUN ls
COPY package.json /app/
RUN npm install
COPY . .
RUN npm run build
EXPOSE ${PORT_EXPOSED}
CMD ["node", "dist/server/entry.mjs"]
CMD vite preview --port ${PORT_EXPOSED}