Skip to content

Instantly share code, notes, and snippets.

@task4233
Created May 5, 2021 05:21
Show Gist options
  • Save task4233/a6c20aa7814a13a18a882a8966df89fc to your computer and use it in GitHub Desktop.
Save task4233/a6c20aa7814a13a18a882a8966df89fc to your computer and use it in GitHub Desktop.
Dockerfile for installing lldb-x
FROM debian:buster
WORKDIR /app
ENV LLDB_VERSION=11
RUN apt-get update && apt-get install -y \
lsb-release \
apt-utils \
gnupg \
wget \
software-properties-common && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN wget https://apt.llvm.org/llvm.sh && \
chmod +x llvm.sh && \
./llvm.sh ${LLDB_VERSION} && \
rm -rf ./llvm.sh
RUN ln -sf /usr/bin/lldb-11 /usr/bin/lldb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment