added compose

This commit is contained in:
Robin Müller 2021-05-20 23:30:57 +02:00
parent 53c420cf69
commit e0baf17c83
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
3 changed files with 30 additions and 1 deletions

View File

@ -8,7 +8,7 @@ WORKDIR /usr/src/app
RUN rm -rf build-hosted
RUN set -ex; \
RUN set -ex; \
mkdir build-hosted; \
cd build-hosted; \
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=host ..;

17
bsp_linux/Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM ubuntu:latest
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake g++
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN rm -rf build-hosted
RUN set -ex; \
mkdir build-linux; \
cd build-linux; \
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=linux ..;
ENTRYPOINT ["cmake", "--build", "build-linux"]
CMD ["-j"]

12
docker-compose.yml Normal file
View File

@ -0,0 +1,12 @@
version: "3.8"
services:
build-linux:
build:
context: .
dockerfile: bsp_linux/Dockerfile
build-host:
build:
context: .
dockerfile: bsp_hosted/Dockerfile