We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec4650b commit eacd9a2Copy full SHA for eacd9a2
.devcontainer/Dockerfile
@@ -0,0 +1,6 @@
1
+FROM mcr.microsoft.com/devcontainers/base:ubuntu
2
+
3
+RUN apt install -y curl unzip
4
5
+ENV BUN_INSTALL=/usr/local
6
+RUN curl -fsSL https://bun.sh/install | bash
.devcontainer/devcontainer.json
+{
+ "name": "Bun (TypeScript) development container",
+ "build": {
+ "dockerfile": "./Dockerfile"
+ }
+}
0 commit comments