2022-08-15 18:07:12 +08:00
|
|
|
FROM alpine:3.16.2
|
2022-08-25 21:06:23 +08:00
|
|
|
RUN apk add --update --no-cache lighttpd bash curl
|
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 && \
|
2022-07-18 01:30:34 +08:00
|
|
|
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"]
|
2022-08-25 21:06:23 +08:00
|
|
|
|
|
|
|
HEALTHCHECK CMD curl -skfI localhost:$APACHE_PORT || exit 1
|