We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c6d8d2 commit 5ac63baCopy full SHA for 5ac63ba
.devcontainer/devcontainer.json
@@ -0,0 +1,9 @@
1
+{
2
+ "name": "Default Linux Universal",
3
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
4
+ "image": "mcr.microsoft.com/devcontainers/universal:2-linux",
5
+ "features": {
6
+ },
7
+
8
+ "onCreateCommand": "bash ./ops/install.sh"
9
+}
.github/dependabot.yml
@@ -0,0 +1,6 @@
+version: 2
+updates:
+ - package-ecosystem: "devcontainers"
+ directory: "/"
+ schedule:
+ interval: weekly
ops/install.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+# This script is meant for setting up a working devcontainer
+# Install the Grit CLI
+curl -fsSL https://docs.grit.io/install | bash
+source ~/.bashrc
0 commit comments