diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fcf9ea0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# develop stage +FROM node:14.21.2-alpine as develop-stage +WORKDIR /app +COPY package*.json ./ +RUN npm i -g @quasar/cli +COPY . . + +# build stage +FROM develop-stage as build-stage +RUN yarn +RUN quasar build + +# production stage +FROM nginx:1.17.5-alpine as production-stage +COPY --from=build-stage /app/dist/spa /usr/share/nginx/html +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"]