Update git locations in docker file to point to the right repos

This commit is contained in:
Simon 2021-10-09 12:12:39 +01:00
parent bef8a37adf
commit a599383924
1 changed files with 3 additions and 3 deletions

View File

@ -10,17 +10,17 @@ RUN useradd -u 54000 radio && \
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py && \ wget https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
python2 ./get-pip.py && \ python2 ./get-pip.py && \
pip install twisted && \ pip install twisted && \
git clone https://github.com/hacknix/DMRlink.git && \ git clone https://gitlab.hacknix.net/hacknix/DMRlink.git && \
cd /opt/DMRlink && \ cd /opt/DMRlink && \
git checkout IPSC_Bridge && \ git checkout IPSC_Bridge && \
sh ./mk-dmrlink && \ sh ./mk-dmrlink && \
cd .. && \ cd .. && \
git clone https://github.com/hacknix/HBLink.git && \ git clone https://gitlab.hacknix.net/hacknix/HBLink.git && \
cd HBLink && \ cd HBLink && \
git checkout HB_Bridge && \ git checkout HB_Bridge && \
sh ./mk-required && \ sh ./mk-required && \
cd .. && \ cd .. && \
git clone https://github.com/hacknix/DMRGateway.git && \ git clone https://gitlab.hacknix.net/hacknix/DMRGateway.git && \
cd DMRGateway && \ cd DMRGateway && \
git reset --hard 6e89e4922f8c5eb7ec3797729a82137d70bc8940 && \ git reset --hard 6e89e4922f8c5eb7ec3797729a82137d70bc8940 && \
make && \ make && \