We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efeaf8c commit 93fb8caCopy full SHA for 93fb8ca
2 files changed
.docker/Dockerfile.devenv
@@ -1,9 +1,8 @@
1
FROM ubuntu:22.04
2
3
-
4
RUN apt -y update && apt -y upgrade && apt install bash -y
5
RUN DEBIAN_FRONTEND=noninteractive apt -y install wget gpg software-properties-common lsb-release git make python3 python3-pip -y
6
-RUN apt -y update && apt -y install cmake ninja-build sudo
+RUN apt -y update && apt -y install cmake clang-14 ninja-build sudo
7
8
9
RUN set -exu; \
@@ -13,3 +12,7 @@ RUN set -exu; \
13
12
usermod -aG sudo vscode;
14
15
USER vscode
+
16
+ENV CC "$(which clang-14)"
17
+ENV CXX "$(which clang++-14)"
18
+ENV CMAKE_GENERATOR "Ninja"
Brewfile
0 commit comments