]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Release on tag event.
[github/bastienwirtz/homer.git] / Dockerfile
index 7621639c17956b6c95fdf5147fad9877d484daea..205d759fe2c02e463e07455ff86d09bfa85d800d 100644 (file)
@@ -1,6 +1,16 @@
-FROM alpine:3.11
+# build stage
+FROM node:lts-alpine as build-stage
+
+WORKDIR /app
+
+COPY package*.json ./
+RUN yarn install --frozen-lockfile
 
-COPY ./ /www/
+COPY . .
+RUN yarn build
+
+# production stage
+FROM alpine:3.11
 
 ENV USER darkhttpd
 ENV GROUP darkhttpd
@@ -10,6 +20,8 @@ ENV UID 911
 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
     apk add -U darkhttpd
 
-USER darkhttpd
+USER ${USER}
+
+COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
 
-ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
+ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
\ No newline at end of file