From 27bf626f10a9f48a6cf0e24180af7c03991f66fc Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 27 Sep 2022 15:43:32 +0200 Subject: Add Dockerfile --- Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2400584 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +# build stage +FROM node:lts-alpine as build-stage +WORKDIR /app +COPY package*.json ./ + +# environment variables +# used by Vue.js app as `process.env.` into the views/components +ARG BACKEND_URL + +RUN npm install +RUN npx browserslist@latest --update-db +COPY . . +RUN npm run build && npm run generate + +# production stage +FROM nginx:stable-alpine as production-stage +COPY ./nginx.conf /temp/prod.conf +RUN envsubst /app < /temp/prod.conf > /etc/nginx/conf.d/default.conf +COPY --from=build-stage /app/dist/ /usr/share/nginx/html +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] -- cgit v1.2.3-18-g5258