{
  "name": "Idris2 devcontainer",
  "build": {
    "context": "..",
    "dockerfile": "Dockerfile"
  },
  "customizations": {
    "vscode": {
      "extensions": [
        "meraymond.idris-vscode"
      ]
    }
  },
  "remoteEnv": {
    "IDRIS_DEVCONTAINER": "minimal"
    // ^ We just set this in case we ever need to distinguish
    // we are running in a codespace.
  },
  // Runs only once when container is prepared
  "onCreateCommand": {
  },
  // Runs periodically and/or when content of repo changes
  "updateContentCommand": {
  },
  // These run only when the container is assigned to a user
  "postCreateCommand": {
  },
  "shutdownAction": "stopCompose"
}