2023-04-23 18:20:41 +00:00
|
|
|
FROM registry.fedoraproject.org/fedora:38
|
2023-03-26 15:16:56 +00:00
|
|
|
|
|
|
|
RUN dnf clean all && \
|
|
|
|
dnf install -y tor nyx util-linux && \
|
|
|
|
dnf clean all
|
|
|
|
|
|
|
|
COPY torrc.conf /torrc
|
|
|
|
|
|
|
|
WORKDIR /
|
|
|
|
|
|
|
|
USER toranon
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/tor", "-f", "/torrc"]
|