sh does not recognize set -euET -o pipefail, only a subset of those options. Use bash for now.
This commit is contained in:
parent
17b413faee
commit
fae35a1f42
@ -17,15 +17,15 @@ ADD . /ligo
|
||||
WORKDIR /ligo
|
||||
|
||||
# Setup a custom opam repository where ligo is published
|
||||
RUN sh scripts/setup_ligo_opam_repository.sh
|
||||
RUN bash scripts/setup_ligo_opam_repository.sh
|
||||
|
||||
# Install required native dependencies
|
||||
RUN sh scripts/install_native_dependencies.sh
|
||||
RUN bash scripts/install_native_dependencies.sh
|
||||
|
||||
RUN opam update
|
||||
|
||||
# Install ligo
|
||||
RUN sh scripts/install_ligo_with_dependencies.sh
|
||||
RUN bash scripts/install_ligo_with_dependencies.sh
|
||||
|
||||
# Use the ligo binary as a default command
|
||||
ENTRYPOINT [ "/home/opam/.opam/4.06/bin/ligo" ]
|
||||
|
Loading…
Reference in New Issue
Block a user