dockerfile bin error

This commit is contained in:
Lex Berezhny 2020-08-13 11:17:45 -04:00
parent 4c331d00e7
commit e59e238fd5

View file

@ -1,3 +1,7 @@
FROM ubuntu:20.04 FROM ubuntu:20.04
RUN ls
COPY lbrynet /bin COPY lbrynet /bin
ENTRYPOINT ["lbrynet", "start", "--full-node"] RUN /bin/ls
RUN lbrynet --version
ENTRYPOINT ["lbrynet"]
CMD ["start", "--full-node"]