Skip to content

Commit ae00930

Browse files
committed
fixed env variable declaration
1 parent cc8bc79 commit ae00930

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.docker/Dockerfile.devenv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM ubuntu:22.04
22

33
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
4+
RUN DEBIAN_FRONTEND=noninteractive apt -y install wget gpg software-properties-common lsb-release git make python3 python3-pip vim -y
55
RUN apt -y update && apt -y install cmake clang-14 ninja-build sudo
66

77

@@ -13,6 +13,6 @@ RUN set -exu; \
1313

1414
USER vscode
1515

16-
ENV CC "$(which clang-14)"
17-
ENV CXX "$(which clang++-14)"
16+
ENV CC "/usr/bin/clang-14"
17+
ENV CXX "/usr/bin/clang++-14"
1818
ENV CMAKE_GENERATOR "Ninja"

0 commit comments

Comments
 (0)