mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-03-14 08:26:41 -04:00

* working on i2p integration * finishing i2p setup * fix comment * include hidden txt for tor
16 lines
245 B
Plaintext
16 lines
245 B
Plaintext
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && apt-get install tor -y
|
|
|
|
RUN mkdir -p /run/tor \
|
|
&& chown -R debian-tor:debian-tor /run/tor \
|
|
&& chmod 700 -R /run/tor
|
|
|
|
COPY conf/torrc /etc/tor/torrc
|
|
|
|
USER debian-tor
|
|
|
|
EXPOSE 9050
|
|
|
|
ENTRYPOINT ["tor"]
|