push dockerizado y comprobado

This commit is contained in:
2023-03-09 11:38:13 +01:00
parent 4291ccbe63
commit a6dc62496e
2 changed files with 2 additions and 1 deletions

View File

@@ -2,12 +2,13 @@
FROM node:14.21.2-alpine as develop-stage
WORKDIR /app
COPY package*.json ./
RUN npm install -g npm@latest
RUN npm i -g @quasar/cli
COPY . .
# build stage
FROM develop-stage as build-stage
RUN yarn
RUN npm i
RUN quasar build
# production stage