Build system integration using vue-cli.

This commit is contained in:
Bastien Wirtz
2020-05-25 15:07:03 -07:00
parent ab7ac44c19
commit b9c5fcf085
69 changed files with 10028 additions and 10347 deletions

View File

@@ -1,13 +1,26 @@
# build stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN yarn install
COPY . .
RUN yarn build
# Multi arch build support
FROM alpine as qemu
ARG QEMU_VERSION="v4.2.0-7"
RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-arm-static && chmod +x qemu-arm-static
# production stage
FROM arm32v7/alpine:3.11
COPY --from=qemu qemu-arm-static /usr/bin/
COPY ./ /www/
COPY --from=build-stage /app/dist /www/
ENV USER darkhttpd
ENV GROUP darkhttpd