mirror of
https://codeberg.org/pluja/kycnot.me
synced 2025-01-09 06:07:56 -05:00
7 lines
164 B
Docker
7 lines
164 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --update --no-cache add tor && rm -rf /var/cache/apk/*
|
|
|
|
COPY torrc /etc/torrc
|
|
|
|
ENTRYPOINT ["/usr/bin/tor", "--hush", "-f", "/etc/torrc"] |