10 lines
194 B
Text
10 lines
194 B
Text
|
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"]
|