1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

Meta: Hardcode lowercase repository name for devcontainer

This should unbreak CI.
This commit is contained in:
Jelle Raaijmakers 2023-05-24 20:07:34 +02:00
parent 7026174458
commit 971d3eef4a
2 changed files with 8 additions and 9 deletions

View file

@ -1,11 +1,11 @@
// The docker image used below was generated from '.devcontainer/devcontainer.json'
// by the '.github/workflows/dev-container.yml' workflow.
//
// By building this dev container image in advance, tools
// like GitHub Codespaces (https://containers.dev/supporting)
// do not need to install all the prerequsite dependencies from scratch,
// By building this dev container image in advance, tools
// like GitHub Codespaces (https://containers.dev/supporting)
// do not need to install all the prerequsite dependencies from scratch,
// getting you into your development environment faster!
{
"name": "SerenityOS (Pre-Built Image)",
"image": "ghcr.io/SerenityOS/serenity-devcontainer:base"
"image": "ghcr.io/serenityos/serenity-devcontainer:base"
}