1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

Replaced darkhttpd with lighttpd

This commit is contained in:
Kirmy 2021-12-09 13:09:09 +01:00 committed by Bastien Wirtz
parent caf5fae8a8
commit b6b31e440c
5 changed files with 35 additions and 10 deletions

View file

@ -12,18 +12,19 @@ RUN yarn build
# production stage
FROM alpine:3.15
ENV USER darkhttpd
ENV GROUP darkhttpd
ENV USER lighttpd
ENV GROUP lighttpd
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 --no-cache su-exec darkhttpd
apk add -U --no-cache lighttpd
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
COPY lighttpd.conf /lighttpd.conf
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1