herald.go/dev.dockerfile

7 lines
226 B
Text
Raw Normal View History

2021-06-17 01:53:48 +02:00
FROM debian:10-slim
EXPOSE 50051
RUN apt-get update && apt-get install curl -y
RUN curl -L -o /hub https://github.com/lbryio/hub/releases/download/v0.2021.06.14-beta/hub && chmod +x /hub
ENTRYPOINT ["/hub", "serve", "--dev"]