mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 03:05:51 +00:00
For example, there is not syntax highlighting in GitHub, because file is named `dockerfile` (and not Dockerfile), for example: https://github.com/XRPLF/clio/blob/release/2.4.0/docker/ci/dockerfile I also grep'ed dockerfile in repo and fixed some other places
20 lines
463 B
Docker
20 lines
463 B
Docker
FROM ubuntu:focal
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ARG TARGETARCH
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
USER root
|
|
WORKDIR /root
|
|
|
|
ENV CLANG_VERSION=16
|
|
|
|
RUN apt update -qq \
|
|
&& apt install -qq -y --no-install-recommends --no-install-suggests \
|
|
wget software-properties-common gnupg
|
|
|
|
RUN wget https://apt.llvm.org/llvm.sh \
|
|
&& chmod +x llvm.sh \
|
|
&& ./llvm.sh ${CLANG_VERSION} \
|
|
&& rm -rf llvm.sh \
|
|
&& apt-get install -y libc++-16-dev libc++abi-16-dev
|