Adicionar Dockerfile

This commit is contained in:
2026-06-13 18:46:31 -03:00
parent 759e2663ec
commit fdb580957d

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:22.19.0-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
RUN npm install -g serve
EXPOSE 5173
CMD ["serve", "-s", "dist", "-l", "5173"]