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