diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-25 10:20:32 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-25 10:23:46 +0100 |
commit | d5e2f374c07d976cd56ece3aef6819def2b00502 (patch) | |
tree | cf484b99c5df150681cbf2ebdd3743332c366ff9 /Dockerfile | |
parent | b5cf43e435153bbb99ffa4b2637b36c9d6dbac87 (diff) |
docker: add dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..827cde4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +# build stage +FROM node:14-alpine as build-stage +WORKDIR /app +COPY package*.json ./ + +# environment variables +ARG VUE_APP_BACKEND_URL + +RUN npm install --production +COPY . . +RUN npm run build --production + +# 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;"] |