ContainersWorkspace/tor/Dockerfile

14 lines
226 B
Text
Raw Normal View History

2023-11-24 20:12:55 +00:00
FROM registry.fedoraproject.org/fedora:rawhide
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"]