Relocate .opam

This commit is contained in:
Tom Jack 2019-12-16 14:32:10 -06:00
parent 9c9e0e0a2b
commit c83813456a
5 changed files with 7 additions and 5 deletions

View File

@ -26,7 +26,7 @@ RUN opam update
# Install ligo # Install ligo
RUN sh scripts/install_vendors_deps.sh RUN sh scripts/install_vendors_deps.sh
RUN opam install -y ./src RUN opam install -y .
# Use the ligo binary as a default command # Use the ligo binary as a default command
ENTRYPOINT [ "/home/opam/.opam/4.07/bin/ligo" ] ENTRYPOINT [ "/home/opam/.opam/4.07/bin/ligo" ]

View File

@ -14,7 +14,8 @@ then
m4 \ m4 \
libcap \ libcap \
bubblewrap \ bubblewrap \
rsync rsync \
git
else else
apt-get update -qq apt-get update -qq
@ -27,5 +28,6 @@ else
m4 \ m4 \
libcap-dev \ libcap-dev \
bubblewrap \ bubblewrap \
rsync rsync \
git
fi fi

View File

@ -2,5 +2,5 @@
set -e set -e
# Install local dependencies # Install local dependencies
opam install -y --deps-only --with-test $(find src vendors -name \*.opam) opam install -y --deps-only --with-test ./ligo.opam $(find vendors -name \*.opam)
opam install -y $(find vendors -name \*.opam) opam install -y $(find vendors -name \*.opam)

View File

@ -2,5 +2,5 @@
set -e set -e
set -x set -x
printf '' | opam switch create . ocaml-base-compiler.4.07.1 # toto ocaml-base-compiler.4.06.1 printf '' | opam switch create . ocaml-base-compiler.4.07.1 --no-install
eval $(opam config env) eval $(opam config env)