This repository has been archived on 2021-05-15. You can view files and clone it, but cannot push or open issues/pull-requests.
tor-reverseproxy/Dockerfile

13 lines
219 B
Docker
Raw Permalink Normal View History

2019-05-27 16:25:44 +02:00
FROM alpine
RUN apk add --no-cache \
nginx \
su-exec \
tor
COPY torrc /etc/tor/torrc
COPY nginx.conf /etc/nginx/nginx.conf.tmpl
2019-05-27 16:25:44 +02:00
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]