We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ffc89e commit 58914b7Copy full SHA for 58914b7
2 files changed
.devcontainer/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM mcr.microsoft.com/devcontainers/java:25
2
+
3
+# Install Node.js LTS
4
+RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && \
5
+ apt-get install -y nodejs && \
6
+ rm -rf /var/lib/apt/lists/*
7
+RUN npm install -g ro-crate-html-js
8
9
+# Verify installations
10
+RUN node --version && npm --version
.devcontainer/devcontainer.json
@@ -0,0 +1,12 @@
+{
+ "name": "Java (Gradle)",
+ "build": {
+ "dockerfile": "Dockerfile"
+ },
+ "customizations": {
+ "zed": {
+ "extensions": ["java"]
+ }
11
+ "forwardPorts": [8080]
12
+}
0 commit comments