File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
2
+
3
+ USER root
4
+ # Install needed packages according to https://codeql.github.com/docs/codeql-overview/system-requirements/
5
+ # most come from the base image, but we need to install some additional ones
6
+ RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y sudo man-db python3.12 npm unminimize
7
+ RUN yes | unminimize
Original file line number Diff line number Diff line change 1
1
{
2
- "image" : " mcr.microsoft.com/devcontainers/base:ubuntu-24.04" ,
3
2
"extensions" : [
4
3
" rust-lang.rust-analyzer" ,
5
4
" bungcip.better-toml" ,
8
7
" ms-vscode.test-adapter-converter" ,
9
8
" slevesque.vscode-zipexplorer"
10
9
],
10
+ "build" : {
11
+ // Path is relative to the devcontainer.json file.
12
+ "dockerfile" : " Dockerfile.codespaces"
13
+ },
11
14
"settings" : {
12
15
"files.watcherExclude" : {
13
16
"**/target/**" : true
You can’t perform that action at this time.
0 commit comments