mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 08:18:04 +00:00
9 lines
164 B
Text
9 lines
164 B
Text
|
FROM alpine:latest
|
||
|
|
||
|
# 9050 SOCKS port
|
||
|
# 9051 control port
|
||
|
# 5353 DNS port
|
||
|
EXPOSE 9050 9051 5353
|
||
|
RUN apk add --no-cache tor
|
||
|
CMD tor -f /etc/tor/torrc
|