ContainersWorkspace/tor/Containerfile
Maciej Lebiest fd292f1e4d
All checks were successful
Build images / build-images-arm64 (push) Successful in 21m33s
Build images / build-images-amd64 (push) Successful in 20m4s
Build images / update-images-manifests (push) Successful in 27s
Set tor base image to mainline Fedora, instead of rawhide
2024-04-07 20:42:08 +02:00

12 lines
205 B
Docker

FROM registry.fedoraproject.org/fedora-minimal
RUN dnf5 install -y tor nyx util-linux && \
dnf5 clean all
COPY torrc.conf /torrc
WORKDIR /
USER toranon
ENTRYPOINT ["/usr/bin/tor", "-f", "/torrc"]