mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 03:16:24 +00:00
14 lines
328 B
Docker
14 lines
328 B
Docker
FROM dockurr/strfry:0.9.6
|
|
|
|
RUN apk add --no-cache dcron torsocks
|
|
|
|
RUN echo "TorAddress 127.0.0.1" >> /etc/tor/torsocks.conf
|
|
RUN echo "TorPort 9050" >> /etc/tor/torsocks.conf
|
|
|
|
COPY crontab /app/crontab
|
|
COPY entrypoint.sh /etc/strfry/entrypoint.sh
|
|
|
|
RUN chmod +x /etc/strfry/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/etc/strfry/entrypoint.sh"]
|