diff --git a/ggsn-test/Dockerfile b/ggsn-test/Dockerfile index f00af655..1aabce32 100644 --- a/ggsn-test/Dockerfile +++ b/ggsn-test/Dockerfile @@ -3,7 +3,7 @@ FROM laforge/debian-stretch-titan RUN mkdir /root/projects && (cd /root/projects && ln -sf / git) RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git -ADD http://git.osmocom.org/osmo-ttcn3-hacks/commit /tmp/commit +ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch /tmp/commit RUN cd osmo-ttcn3-hacks/ggsn_tests && \ git pull && \ ./gen_links.sh && \ diff --git a/m3ua-test/Dockerfile b/m3ua-test/Dockerfile index 87975d23..fc9fcd36 100644 --- a/m3ua-test/Dockerfile +++ b/m3ua-test/Dockerfile @@ -3,7 +3,7 @@ FROM laforge/sigtran-tests MAINTAINER Harald Welte RUN cd /tmp && git clone https://github.com/nplab/m3ua-testtool -ADD http://git.osmocom.org/nplab/m3ua-testtool/commit /tmp/commit +ADD http://git.osmocom.org/nplab/m3ua-testtool/patch /tmp/commit RUN cd /tmp/m3ua-testtool && \ git pull && \ cc -o runm3uatest runm3uatest.c && \ diff --git a/osmo-ggsn-master/Dockerfile b/osmo-ggsn-master/Dockerfile index 3010ae5c..f4e3870f 100644 --- a/osmo-ggsn-master/Dockerfile +++ b/osmo-ggsn-master/Dockerfile @@ -14,9 +14,8 @@ RUN apt-get update && apt-get install -y \ WORKDIR /tmp -ARG timestamp=invalid RUN git clone git://git.osmocom.org/openggsn.git -ADD http://git.osmocom.org/openggsn/commit/?h=laforge/osmo-ggsn /tmp/commit +ADD http://git.osmocom.org/openggsn/patch/?h=laforge/osmo-ggsn /tmp/commit RUN cd openggsn && \ git checkout -f laforge/osmo-ggsn && \ autoreconf -fi && \ diff --git a/osmo-stp-master/Dockerfile b/osmo-stp-master/Dockerfile index 2918d46a..487a675d 100644 --- a/osmo-stp-master/Dockerfile +++ b/osmo-stp-master/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y \ WORKDIR /tmp RUN git clone git://git.osmocom.org/libosmo-sccp.git -ADD http://git.osmocom.org/libosmo-sccp/commit /tmp/commit +ADD http://git.osmocom.org/libosmo-sccp/patch /tmp/commit RUN cd libosmo-sccp && \ git pull && \ autoreconf -fi && \ diff --git a/sua-test/Dockerfile b/sua-test/Dockerfile index 93da5763..f7f38859 100644 --- a/sua-test/Dockerfile +++ b/sua-test/Dockerfile @@ -8,7 +8,7 @@ RUN git config --global user.email "nobody@localhost" && \ git config --global user.name "Docker Container" RUN cd /tmp && git clone https://github.com/nplab/sua-testtool -ADD http://git.osmocom.org/nplab/sua-testtool/commit /tmp/commit +ADD http://git.osmocom.org/nplab/sua-testtool/patch /tmp/commit RUN cd /tmp/sua-testtool && \ git pull && \ git am /tmp/*.patch && \