14 lines
285 B
Docker
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"]
|