mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
42 lines
1.1 KiB
Docker
42 lines
1.1 KiB
Docker
FROM ubuntu:jammy
|
|
ENV TZ=Europe/London
|
|
|
|
RUN apt update && apt install -y --no-install-recommends \
|
|
git g++ make pkg-config libtool ca-certificates \
|
|
libssl-dev zlib1g-dev liblmdb-dev libflatbuffers-dev \
|
|
libsecp256k1-dev libzstd-dev
|
|
|
|
# setup app
|
|
RUN git clone https://github.com/KoalaSat/strfry /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN git submodule update --init
|
|
RUN make setup-golpe
|
|
RUN make clean
|
|
RUN make -j4
|
|
|
|
RUN apt update && apt install -y --no-install-recommends \
|
|
liblmdb0 libflatbuffers1 libsecp256k1-0 libb2-1 libzstd1 torsocks cron\
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN echo "TorAddress 127.0.0.1" >> /etc/tor/torsocks.conf
|
|
RUN echo "TorPort 9050" >> /etc/tor/torsocks.conf
|
|
|
|
# Setting up crontab
|
|
COPY crontab /etc/cron.d/crontab
|
|
RUN chmod 0644 /etc/cron.d/crontab
|
|
RUN crontab /etc/cron.d/crontab
|
|
|
|
# Setting up entrypoints
|
|
COPY sync.sh /etc/strfry/sync.sh
|
|
COPY entrypoint.sh /etc/strfry/entrypoint.sh
|
|
|
|
RUN chmod +x /etc/strfry/entrypoint.sh
|
|
RUN chmod +x /etc/strfry/sync.sh
|
|
|
|
#Setting up logs
|
|
RUN touch /var/log/cron.log && chmod 0644 /var/log/cron.log
|
|
|
|
ENTRYPOINT ["/etc/strfry/entrypoint.sh"]
|