mirror of https://github.com/aminya/setup-cpp.git
14 lines
360 B
Docker
14 lines
360 B
Docker
FROM aminya/setup-cpp-ubuntu:latest AS setup-cpp-ubuntu-llvm
|
|
|
|
# install llvm
|
|
RUN node --enable-source-maps /usr/lib/setup-cpp/setup-cpp.mjs \
|
|
--compiler llvm && \
|
|
# cleanup
|
|
apt-get clean autoclean && \
|
|
apt-get autoremove -y && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm -rf /tmp/*
|
|
|
|
SHELL ["/bin/bash", "-l", "-c"]
|
|
ENTRYPOINT ["/bin/bash", "-l"]
|