updated docker files

This commit is contained in:
Robin Müller 2021-06-08 16:03:19 +02:00
parent 1f52e1f35f
commit ee66d0a349
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
2 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,8 @@ WORKDIR /usr/src/app
COPY . .
RUN set -ex; \
git submodule init; \
git submodule update; \
rm -rf build-hosted; \
mkdir build-hosted; \
cd build-hosted; \

View File

@ -5,11 +5,11 @@ RUN apt-get update && apt-get install -y curl cmake g++
# Q7S root filesystem, required for cross-compilation
RUN mkdir -p /usr/rootfs; \
curl https://eive-cloud.irs.uni-stuttgart.de/index.php/s/agnJGYeRf6fw2ci/download/cortexa9hf-neon-xiphos-linux-gnueabi.tar.gz \
curl https://eive-cloud.irs.uni-stuttgart.de/index.php/s/dnfMy9kGpgynN6J/download/cortexa9hf-neon-xiphos-linux-gnueabi.tar.gz \
| tar xvz -C /usr/rootfs
# Q7S C++ cross-compiler
RUN mkdir -p /usr/tools; \
curl https://eive-cloud.irs.uni-stuttgart.de/index.php/s/2Fp2ag6NGnbtAsK/download/gcc-arm-linux-gnueabi.tar.gz \
curl https://eive-cloud.irs.uni-stuttgart.de/index.php/s/RMsbHydJc6PSqcz/download/gcc-arm-linux-gnueabi.tar.gz \
| tar xvz -C /usr/tools
# RUN apk add cmake make g++
@ -22,6 +22,8 @@ WORKDIR /usr/src/app
COPY . .
RUN set -ex; \
git submodule init; \
git submodule update; \
rm -rf build-q7s; \
mkdir build-q7s; \
cd build-q7s; \