From b9c5fcf085bed9c6100283133531b36bfbb06cf0 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Mon, 25 May 2020 15:07:03 -0700 Subject: Build system integration using vue-cli. --- Dockerfile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 7621639..ea28aa3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file -- cgit v1.2.3