docker-lbrynet/Dockerfile

17 lines
392 B
Docker
Raw Normal View History

2021-12-17 09:39:29 +01:00
FROM ubuntu:latest
EXPOSE 5279 5280
2018-10-03 19:15:04 +02:00
VOLUME /storage
RUN apt-get update && apt-get -y install ca-certificates bash
2018-10-03 19:15:04 +02:00
RUN mkdir /daemon
WORKDIR /daemon
2019-01-29 12:22:50 +01:00
COPY lbrynet ./
COPY conf/daemon_settings.yml ./
COPY conf/test_daemon_settings.yml ./
COPY conf/regtest_daemon_settings.yml ./
COPY launcher.sh ./launcher.sh
2020-03-09 19:42:21 +01:00
COPY scripts/probe.sh ./probe.sh
2021-12-17 09:39:29 +01:00
RUN chmod +x lbrynet ./*.sh
CMD ["./launcher.sh"]