Skip to content

Commit

Permalink
updates to the git+https in the dockerfiles (#1447)
Browse files Browse the repository at this point in the history
the old git:// is no longer supported
  • Loading branch information
ivg authored Mar 17, 2022
1 parent 2f05849 commit bc96799
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /home/opam
RUN opam switch 4.09 \
&& eval "$(opam env)" \
&& opam remote set-url default https://opam.ocaml.org \
&& opam repo add bap git://github.com/BinaryAnalysisPlatform/opam-repository#testing --all \
&& opam repo add bap git+https://github.com/BinaryAnalysisPlatform/opam-repository#testing --all \
&& opam update \
&& opam depext --install bap --yes -j 1 \
&& opam clean -acrs \
Expand Down
2 changes: 1 addition & 1 deletion docker/archlinux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN sudo pacman -S --noconfirm m4 git unzip make curl wget \
&& echo "" | sudo sh install.sh \
&& opam init --comp=4.09.1 --disable-sandboxing --yes \
&& eval "$(opam env)" \
&& opam repo add bap git://github.com/BinaryAnalysisPlatform/opam-repository#testing --all \
&& opam repo add bap git+https://github.com/BinaryAnalysisPlatform/opam-repository#testing --all \
&& opam update \
&& opam install bap --yes -j 1 \
&& opam clean -acrs \
Expand Down
2 changes: 1 addition & 1 deletion docker/fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /home/opam
RUN opam switch 4.09 \
&& eval "$(opam env)" \
&& opam remote set-url default https://opam.ocaml.org \
&& opam repo add bap git://github.com/BinaryAnalysisPlatform/opam-repository#testing --all \
&& opam repo add bap git+https://github.com/BinaryAnalysisPlatform/opam-repository#testing --all \
&& opam update \
&& opam depext --install bap --yes -j 1 \
&& opam clean -acrs \
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu/bionic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN sudo apt-get update \
&& opam switch 4.09 \
&& eval "$(opam env)" \
&& opam remote set-url default https://opam.ocaml.org \
&& opam repo add bap git://github.com/BinaryAnalysisPlatform/opam-repository --all \
&& opam repo add bap git+https://github.com/BinaryAnalysisPlatform/opam-repository --all \
&& opam update \
&& opam depext --install bap-extra --yes -j 1 \
&& opam clean -acrs \
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu/xenial/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN sudo apt-get update && sudo apt-get install --yes python-pip \
&& opam switch 4.09 \
&& eval "$(opam env)" \
&& opam remote set-url default https://opam.ocaml.org \
&& opam repo add bap git://github.com/BinaryAnalysisPlatform/opam-repository --all \
&& opam repo add bap git+https://github.com/BinaryAnalysisPlatform/opam-repository --all \
&& opam update \
&& opam depext --install bap --yes -j 1 \
&& opam clean -acrs \
Expand Down

0 comments on commit bc96799

Please sign in to comment.