14 lines
271 B
Docker
14 lines
271 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update --no-cache \
|
|
lighttpd \
|
|
lighttpd-mod_auth \
|
|
&& rm -rf /var/cache/apk/* \
|
|
&& mkdir /www
|
|
|
|
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
|
|
|
|
EXPOSE 80
|
|
VOLUME /var/run/seedbox
|
|
|
|
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]
|