mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2025-07-31 06:51:38 +00:00
14 lines
330 B
Docker
14 lines
330 B
Docker
FROM recksato/robosats-client:v0.7.4-alpha
|
|
RUN apk add bash curl sudo tini wget yq; \
|
|
rm -f /var/cache/apk/*
|
|
|
|
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
|
|
RUN chmod a+x /usr/local/bin/*.sh
|
|
RUN chmod a+x *.sh
|
|
|