[PIE-1] Add docker files

This commit is contained in:
2025-08-11 18:16:59 +12:00
parent 08ae9ee79e
commit 5b0a6561b0
3 changed files with 42 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:24-alpine
WORKDIR /app
COPY package*.json ./
RUN npm i
COPY . .
RUN npm run build
EXPOSE 4173
CMD ["npm", "run", "preview", "--", "--host"]