mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2025-07-19 01:03:26 +00:00
15 lines
507 B
Docker
15 lines
507 B
Docker
FROM recksato/robosats-client
|
|
RUN apt-get update && apt-get install wget curl sudo bash tini -y \
|
|
&& wget https://github.com/mikefarah/yq/releases/download/v4.25.1/yq_linux_arm.tar.gz -O - |\
|
|
tar xz && mv yq_linux_arm /usr/bin/yq
|
|
|
|
ENV APP_HOST robosats.embassy
|
|
ENV APP_PORT 12596
|
|
ENV TOR_PROXY_IP embassy
|
|
ENV TOR_PROXY_PORT 9050
|
|
|
|
ADD ./docker_entrypoint.sh /usr/local/bin/docker_entrypoint.sh
|
|
ADD check-web.sh /usr/local/bin/check-web.sh
|
|
RUN chmod a+x /usr/local/bin/*.sh
|
|
RUN chmod a+x *.sh
|