mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-16 07:55:58 +00:00
17 lines
525 B
Docker
17 lines
525 B
Docker
FROM mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04
|
|
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y install --no-install-recommends \
|
|
python3 \
|
|
python3-pip \
|
|
lcov \
|
|
cmake \
|
|
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip3 install --no-cache-dir \
|
|
cpplint \
|
|
cmake-format\
|
|
gcovr
|
|
# [Optional] Uncomment this section to install additional vcpkg ports.
|
|
# RUN su vscode -c "${VCPKG_ROOT}/vcpkg install <your-port-name-here>"
|