]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Fix Github action trigger syntax
[github/bastienwirtz/homer.git] / Dockerfile
index 7621639c17956b6c95fdf5147fad9877d484daea..cd3ab118cc5e32906aef57a14312b63745b7af7a 100644 (file)
@@ -1,15 +1,30 @@
-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
 ENV GID 911
 ENV UID 911
+ENV PORT 8080
 
 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
     apk add -U darkhttpd
 
-USER darkhttpd
+COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
+COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh
 
-ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
+USER ${USER}
+EXPOSE ${PORT}
+VOLUME [ "/www/config.yml", "/www/assets" ]
+ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]