]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Apply suggestions from code review
[github/bastienwirtz/homer.git] / Dockerfile
index 7621639c17956b6c95fdf5147fad9877d484daea..ef734bbfd89a4e4d174b4f894eaf1634513cc554 100644 (file)
@@ -1,15 +1,31 @@
-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
+COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
 
-ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
+USER ${USER}
+EXPOSE ${PORT}
+VOLUME [ "/www/assets" ]
+ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]