Dockerfiles/tor-alpine/Dockerfile

9 lines
158 B
Docker

FROM alpine:latest
# Install tor
RUN apk add tor
# Run tor with config file /etc/tor/torrc
USER tor
WORKDIR /var/lib/tor
CMD ["tor", "-f", "/etc/tor/torrc"]