all-in-one/Containers/domaincheck/Dockerfile

20 lines
558 B
Text
Raw Normal View History

FROM alpine:3.17.2
RUN apk add --no-cache lighttpd bash netcat-openbsd
2021-11-30 18:20:42 +08:00
RUN adduser -S www-data -G www-data
RUN rm -rf /etc/lighttpd/lighttpd.conf
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
RUN chmod +r -R /etc/lighttpd && \
chown www-data:www-data -R /var/www && \
chown www-data:www-data /etc/lighttpd/lighttpd.conf
2021-11-30 18:20:42 +08:00
COPY start.sh /
RUN chmod +x /start.sh
USER www-data
RUN mkdir -p /var/www/domaincheck/
ENTRYPOINT ["/start.sh"]
HEALTHCHECK CMD nc -z localhost $APACHE_PORT || exit 1
LABEL com.centurylinklabs.watchtower.monitor-only="true"