X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Dockerfile;h=d7179fc59e3a9b5864b0577f1fff57be6e6dc139;hb=451b1ac62450fb2c4f8e2382bcf422bb7a434700;hp=73519e0f5ac52e6aa5ba69f25d622d43d7aa958b;hpb=5f71d1ea01c54a79fb8f459f8acbe92b0ea99c61;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/Dockerfile b/Dockerfile index 73519e0..d7179fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,14 +19,15 @@ ENV UID 911 ENV PORT 8080 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ - apk add -U darkhttpd - -RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh -RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh - -USER ${USER} + apk add -U --no-cache su-exec darkhttpd COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ +COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets +COPY entrypoint.sh /entrypoint.sh + +HEALTHCHECK --interval=5s --timeout=5s --retries=3 \ + CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1 EXPOSE ${PORT} +VOLUME /www/assets ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]