Skip to content
Snippets Groups Projects

Convert cookiecutter

Merged Corné Lukken requested to merge convert-cookiecutter into main
Files
30
+ 29
0
 
FROM ubuntu:22.04
 
 
# This Docker image builds the dependencies for the application.
 
# It lives on the head of its dependencies.
 
 
# Install all build-time dependencies
 
RUN export DEBIAN_FRONTEND=noninteractive && \
 
apt-get update && \
 
apt-get install -y \
 
abi-compliance-checker \
 
abi-dumper \
 
build-essential \
 
clang-format \
 
clang-tidy \
 
cmake \
 
cmake-format \
 
curl \
 
doxygen \
 
gcovr \
 
git \
 
graphviz \
 
libboost-test-dev \
 
ninja-build \
 
python3-breathe \
 
&& \
 
rm -rf /var/lib/apt/lists/*
 
 
RUN python3 -m pip install --upgrade pip
 
RUN pip install --upgrade cookiecutter tox twine
 
\ No newline at end of file
Loading