Another Update Package Yaaay #9

Merged
gaisser merged 21 commits from mueller/yet-another-update-package-nice into master 2021-05-25 14:55:42 +02:00
3 changed files with 24 additions and 0 deletions
Showing only changes of commit e2d40a474b - Show all commits

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
/build*

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM gcc:11
RUN apt-get update
RUN apt-get install -y cmake
COPY . /usr/src/fsfw_example_public
WORKDIR /usr/src/fsfw_example_public
RUN mkdir build-linux; \
cd build-linux; \
cmake -DOS_FSFW=linux ..; \
cmake --build . -j; \
cd ..
RUN mkdir build-hosted; \
cd build-hosted; \
cmake -DOS_FSFW=host ..; \
cmake --build . -j; \
cd ..
ENTRYPOINT ["/bin/sh"]

View File