This repository has been archived on 2025-12-14. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
rtorrent-container/scgiproxy/Dockerfile

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"]