feat: cleanup vite configs

This commit is contained in:
Herculino Trotta
2025-11-23 20:15:06 -03:00
parent 307af9e40a
commit eb4723e890
7 changed files with 13 additions and 23 deletions

View File

@@ -0,0 +1,11 @@
FROM node:lts-alpine
WORKDIR /usr/src/frontend
COPY ./frontend/package.json .
RUN npm install --verbose && npm cache clean --force
ENV PATH ./node_modules/.bin/:$PATH
CMD ["npm", "run", "dev"]