mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 11:04:28 +08:00
be973ed1ba
Bumps alpine from 3.18.2 to 3.18.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
567 B
Docker
18 lines
567 B
Docker
FROM alpine:3.18.3
|
|
RUN set -ex; \
|
|
apk add --no-cache bash lighttpd netcat-openbsd; \
|
|
adduser -S www-data -G www-data; \
|
|
rm -rf /etc/lighttpd/lighttpd.conf; \
|
|
chmod 777 -R /etc/lighttpd; \
|
|
mkdir -p /var/www/domaincheck; \
|
|
chown www-data:www-data -R /var/www; \
|
|
chmod 777 -R /var/www/domaincheck
|
|
COPY --chown=www-data:www-data lighttpd.conf /lighttpd.conf
|
|
|
|
COPY --chmod=775 start.sh /start.sh
|
|
|
|
USER www-data
|
|
ENTRYPOINT ["/start.sh"]
|
|
|
|
HEALTHCHECK CMD nc -z localhost $APACHE_PORT || exit 1
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|