We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81f599e commit 9f87bccCopy full SHA for 9f87bcc
3 files changed
.github/workflows/build.yaml
@@ -35,6 +35,6 @@ jobs:
35
uses: devcontainers/ci@v0.3
36
with:
37
subFolder: ${{ matrix.image }}
38
- imageName: ghcr.io/codesandbox/devcontainers/${{ matrix.image }}
+ imageName: ghcr.io/codesandbox/devcontainers/${{ matrix.image }}:0.1
39
cacheFrom: ghcr.io/codesandbox/devcontainers/${{ matrix.image }}
40
push: always
universal/.devcontainer/Dockerfile
@@ -0,0 +1,3 @@
1
+FROM mcr.microsoft.com/devcontainers/universal:2-focal
2
+
3
+USER root
universal/.devcontainer/devcontainer.json
@@ -1,6 +1,9 @@
{
"name": "CodeSandbox Universal",
- "image": "mcr.microsoft.com/devcontainers/universal:2-focal",
+ "build": {
4
+ "context": ".",
5
+ "dockerfile": "Dockerfile"
6
+ },
7
"features": {
8
"ghcr.io/codesandbox/devcontainer-features/codesandbox:0.1.4": {}
9
},
0 commit comments