mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-12-28 15:49:27 +00:00
11 lines
174 B
Docker
11 lines
174 B
Docker
FROM alpine:3
|
|
|
|
RUN apk --no-cache --no-progress add tor
|
|
|
|
EXPOSE 9001 9050
|
|
|
|
COPY entrypoint.sh /root/entrypoint.sh
|
|
COPY torrc /tmp/torrc
|
|
|
|
ENTRYPOINT [ "/root/entrypoint.sh" ]
|