setup-cpp/dev/docker/ci/ubuntu-llvm.dockerfile

32 lines
766 B
Plaintext
Raw Normal View History

#### Base Image
2024-04-03 15:15:43 +08:00
FROM ubuntu:22.04 AS setup-cpp-ubuntu
2024-03-24 15:20:20 +08:00
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
RUN apt-get update -qq && \
2024-04-03 15:15:43 +08:00
# install nodejs
apt-get install -y --no-install-recommends nodejs npm && \
2024-04-03 15:15:43 +08:00
# install the compiler and tools
2024-03-24 15:20:20 +08:00
node /usr/lib/setup-cpp/setup-cpp.js \
--nala true \
--compiler llvm \
--cmake true \
--ninja true \
--task true \
--vcpkg true \
--python true \
--make true \
--cppcheck true \
--gcovr true \
--doxygen true \
--ccache true && \
2024-04-03 15:15:43 +08:00
# cleanup
nala autoremove -y && \
nala autopurge -y && \
apt-get clean && \
nala clean --lists && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /tmp/*
ENTRYPOINT ["/bin/bash"]