fsfw/automation/Dockerfile

26 lines
746 B
Docker
Raw Normal View History

2021-10-25 14:59:16 +02:00
FROM ubuntu:focal
RUN apt-get update
RUN apt-get --yes upgrade
#tzdata is a dependency, won't install otherwise
ARG DEBIAN_FRONTEND=noninteractive
2022-09-13 13:13:18 +02:00
RUN apt-get --yes install gcc g++ cmake make lcov git valgrind nano iputils-ping python3 pip doxygen graphviz
RUN python3 -m pip install sphinx breathe
RUN git clone https://github.com/catchorg/Catch2.git && \
2022-09-13 13:13:18 +02:00
cd Catch2 && \
git checkout v3.1.0 && \
cmake -Bbuild -H. -DBUILD_TESTING=OFF && \
cmake --build build/ --target install
2022-07-04 10:13:48 +02:00
RUN git clone https://github.com/ETLCPP/etl.git && \
2022-09-13 13:13:18 +02:00
cd etl && \
git checkout 20.28.0 && \
cmake -B build . && \
cmake --install build/
#ssh needs a valid user to work
2022-09-13 14:20:30 +02:00
RUN adduser --uid 114 jenkins