robosats/docker/strfry/Dockerfile

12 lines
210 B
Docker
Raw Normal View History

2024-07-17 23:33:47 +00:00
FROM dockurr/strfry:0.9.6
2024-07-19 10:51:06 +00:00
RUN apk add --no-cache dcron curl iproute2
2024-07-17 23:33:47 +00:00
2024-07-19 10:51:06 +00:00
ADD . /app
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"]