homelab/roles/tor/docker/Dockerfile
Ivan Reshetnikov 671c296a5d
Run tor service with basic configuration
It's not ready to forward any requests.
2024-10-14 23:15:34 +05:00

9 lines
194 B
Docker

FROM alpine:3.20.3
RUN apk update && apk add tor
RUN apk add lyrebird --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
USER tor
ENTRYPOINT ["tor"]
CMD ["-f", "/etc/tor/torrc"]