Show OPAM logs in case of failure inside of Docker

This commit is contained in:
Suzanne Dupéron 2020-02-10 20:10:34 +01:00
parent 0e5002fbeb
commit e86f15e5da

View File

@ -29,7 +29,7 @@ RUN opam update
# Install ligo
RUN sh scripts/install_vendors_deps.sh
RUN opam install -y .
RUN opam install -y . || (tail -n +1 ~/.opam/log/* ; false)
# Use the ligo binary as a default command
ENTRYPOINT [ "/home/opam/.opam/4.07/bin/ligo" ]