10 lines
191 B
Docker
10 lines
191 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
LABEL org.opencontainers.image.authors="kaan@bgenc.net"
|
||
|
|
||
|
RUN apk add --no-cache tor && mkdir -p /etc/tor
|
||
|
|
||
|
VOLUME /etc/tor/
|
||
|
|
||
|
CMD [ "/usr/bin/tor", "-f", "/etc/tor/torrc" ]
|