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,6 +1,18 @@
# build stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN yarn install
COPY . .
RUN yarn build
# production stage
FROM alpine:3.11
COPY ./ /www/
COPY --from=build-stage /app/dist /www/
ENV USER darkhttpd
ENV GROUP darkhttpd
@@ -12,4 +24,4 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
USER darkhttpd
ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]