forked from julia/Dockerfiles
9 lines
158 B
Text
9 lines
158 B
Text
|
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"]
|