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 11{
2- "image" : " mcr.microsoft.com/devcontainers/base:ubuntu-24.04" ,
32 "extensions" : [
43 " rust-lang.rust-analyzer" ,
54 " bungcip.better-toml" ,
87 " ms-vscode.test-adapter-converter" ,
98 " slevesque.vscode-zipexplorer"
109 ],
10+ "build" : {
11+ // Path is relative to the devcontainer.json file.
12+ "dockerfile" : " Dockerfile.codespaces"
13+ },
1114 "settings" : {
1215 "files.watcherExclude" : {
1316 "**/target/**" : true
You can’t perform that action at this time.
0 commit comments