summaryrefslogtreecommitdiff
path: root/onion/Dockerfile
blob: df2caedbd5a923cacdd64ab17062d3f2a18b668c (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM base
RUN apt-get update
RUN echo 'debconf debconf/frontend select noninteractive' | debconf-set-selections
RUN apt-get -y -q install tor
RUN systemctl disable tor
ADD start.sh /start.sh
RUN chmod a+rx /start.sh
VOLUME /etc/tor
VOLUME /var/lib/tor/hs
RUN chown -R debian-tor:debian-tor /var/lib/tor/hs
ENTRYPOINT ["/start.sh"]