This repository has been archived on 2021-05-15. You can view files and clone it, but cannot push or open issues or pull requests.
tor-reverseproxy/Dockerfile
Simon Bruder 585b470624
All checks were successful
continuous-integration/drone/push Build is passing
init
2019-05-27 14:25:44 +00:00

13 lines
214 B
Docker

FROM alpine
RUN apk add --no-cache \
nginx \
su-exec \
tor
COPY torrc /etc/tor/torrc
COPY nginx.conf /etc/nginx/nginx.conf
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]