Files
mop3/Dockerfile.deploy
kamkow1 6a807732ba
Some checks failed
Build ISO image / build-and-deploy (push) Failing after 2m31s
Build documentation / build-and-deploy (push) Failing after 5s
ci Use custom container image
2026-04-03 20:25:26 +02:00

23 lines
626 B
Docker

FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y software-properties-common
RUN apt-add-repository universe && apt-get update
RUN apt-get install -y wget
RUN wget https://apt.llvm.org/llvm.sh -O /llvm.sh && chmod +x /llvm.sh && /llvm.sh 21
RUN apt-get install -y make rsync clang-21 clang-tools-21 llvm-21 bear lld xorriso \
zip gnupg openssh-client nodejs npm git
RUN ln -sf /usr/bin/clang-21 /usr/bin/clang && \
ln -sf /usr/bin/clang-doc-21 /usr/bin/clang-doc && \
ln -sf /usr/bin/llvm-ar-21 /usr/bin/llvm-ar
CMD ["/bin/bash"]