fix dockerfile

This commit is contained in:
Jeffrey Picard 2021-06-16 19:53:48 -04:00
parent c70467335b
commit e5a9a23e9b

View file

@ -1,5 +1,6 @@
FROM debian:10-slim
EXPOSE 50051
COPY ./hub /hub
ENTRYPOINT ["/hub", "serve", "--dev"]
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"]