File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,14 @@ ENV RUSTUP_HOME=/home/vscode/.rustup
158
158
RUN curl -sSf https://sh.rustup.rs | sh -s -- -y
159
159
ENV PATH="${CARGO_HOME}/bin:${PATH}"
160
160
161
+ #
162
+ # Install CodeQL CLI
163
+ RUN cd /opt \
164
+ && wget https://github.com/github/codeql-action/releases/download/codeql-bundle-v2.19.2/codeql-bundle-linux64.tar.gz \
165
+ && tar xf codeql-bundle-linux64.tar.gz \
166
+ && rm codeql-bundle-linux64.tar.gz
167
+ ENV PATH="/opt/codeql:${PATH}"
168
+
161
169
# set path
162
170
ENV PATH="/home/vscode/.opam/default/bin:/opt/bazelisk:/usr/lib/llvm-${LLVM_VER}/bin:${PATH}"
163
171
# clean
Original file line number Diff line number Diff line change 30
30
// Add the IDs of extensions you want installed when the container is created.
31
31
"extensions" : [
32
32
" esbenp.prettier-vscode" ,
33
+ " GitHub.vscode-codeql" ,
34
+ " GitHub.vscode-pull-request-github" ,
33
35
" ms-python.debugpy" ,
34
36
" ms-python.python" ,
35
37
" ms-python.black-formatter" ,
You can’t perform that action at this time.
0 commit comments