This repository has been archived on 2019-03-24. You can view files and clone it, but cannot push or open issues/pull-requests.
lighttpd/Dockerfile

14 lines
285 B
Docker

FROM alpine
RUN apk add --no-cache \
ca-certificates \
lighttpd \
lighttpd-mod_auth \
lighttpd-mod_webdav
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
COPY assets /etc/lighttpd/assets
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]