robosats/docker/strfry/Dockerfile

13 lines
302 B
Docker
Raw Normal View History

2024-07-17 23:33:47 +00:00
FROM dockurr/strfry:0.9.6
2024-07-20 13:03:04 +00:00
RUN apk add --no-cache dcron torsocks
2024-07-22 12:54:03 +00:00
RUN echo "TorAddress 127.0.0.1" >> /etc/tor/torsocks.conf
RUN echo "TorPort 9050" >> /etc/tor/torsocks.conf
2024-07-17 23:33:47 +00:00
2024-07-19 10:51:06 +00:00
COPY entrypoint.sh /etc/strfry/entrypoint.sh
2024-07-17 23:33:47 +00:00
2024-07-19 10:51:06 +00:00
RUN chmod +x /etc/strfry/entrypoint.sh
2024-07-17 23:33:47 +00:00
2024-07-19 10:51:06 +00:00
ENTRYPOINT ["/etc/strfry/entrypoint.sh"]