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 0f7f6cbb6f
All checks were successful
continuous-integration/drone/push Build is passing
update nginx config at every startup (to account for hotswap of keys)
2019-07-15 15:24:34 +00:00

13 lines
219 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.tmpl
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]