docker-lbrynet/Dockerfile

17 lines
383 B
Text
Raw Normal View History

2018-10-03 19:15:04 +02:00
FROM ubuntu:18.04
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
RUN chmod +x ./*.sh
CMD ["./launcher.sh"]