We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e3907b commit 258794aCopy full SHA for 258794a
.devcontainer/Dockerfile.codespaces
@@ -0,0 +1,5 @@
1
+FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
2
+
3
+USER root
4
+RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y sudo man-db python3.12 npm unminimize
5
+RUN yes | unminimize
.devcontainer/devcontainer.json
@@ -1,5 +1,4 @@
{
- "image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
"extensions": [
"rust-lang.rust-analyzer",
"bungcip.better-toml",
@@ -8,6 +7,10 @@
8
7
"ms-vscode.test-adapter-converter",
9
"slevesque.vscode-zipexplorer"
10
],
+ "build": {
11
+ // Path is relative to the devcontainer.json file.
12
+ "dockerfile": "Dockerfile.codespaces"
13
+ },
14
"settings": {
15
"files.watcherExclude": {
16
"**/target/**": true
0 commit comments