mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 13:56:45 +08:00
64f37b959e
Bumps alpine from 3.16.2 to 3.16.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
No EOL
514 B
Docker
18 lines
No EOL
514 B
Docker
FROM alpine:3.16.3
|
|
RUN apk add --update --no-cache lighttpd bash curl netcat-openbsd
|
|
|
|
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
|
|
|
|
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 |