ci(Docker): try to run npm on docker.

This commit is contained in:
2024-09-28 15:49:30 -05:00
parent 2c8911fb78
commit f14d27e83c
3 changed files with 29 additions and 5 deletions

9
vuetify.Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
from node
WORKDIR /app/
COPY tienda_ilusion/don_confiao/frontend/don-confiao/package.json /app/
RUN npm install
CMD ["npm", "run", "dev"]