From 3d948c37429fcaaa8b9cebf90d05bca0502b69e6 Mon Sep 17 00:00:00 2001 From: PingXu Date: Fri, 17 Jan 2025 20:50:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0lldb=E5=92=8Cclangd=E5=88=B0?= =?UTF-8?q?=E5=AE=B9=E5=99=A8=E4=B8=AD=EF=BC=8C=E5=8F=AF=E4=BB=A5=E4=BD=BF?= =?UTF-8?q?=E7=94=A8vscode=E8=B0=83=E8=AF=95=E5=92=8C=E8=A1=A5=E5=85=A8?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 70b14872f..8f1c1cc7a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y net-tools vim git curl wget iputils-p # locale RUN apt-get update && apt-get install -y locales apt-utils && rm -rf /var/lib/apt/lists/* \ && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 + ENV LANG en_US.utf8 # dev tools @@ -47,4 +48,6 @@ RUN mkdir -p /root/docker/bin && touch /etc/.firstrun # copy starter scripts COPY bin/* /root/docker/bin/ -RUN chmod +x /root/docker/bin/* \ No newline at end of file +RUN chmod +x /root/docker/bin/* + +RUN apt-get install -y lldb