This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
fsfw_example_public/Dockerfile

17 lines
333 B
Docker

FROM gcc:11
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN rm -rf build-hosted
RUN set -ex; \
mkdir build-hosted; \
cd build-hosted; \
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=host ..;
ENTRYPOINT ["sh", "-c", "cmake --build build-hosted -j"]