diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-08-10 17:57:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-10 21:57:29 +0000 |
commit | bfef7d47359117a38cc68d558a16259f0668675c (patch) | |
tree | 6187e719f896dc9ecad0e4e3c3175338806a8aec | |
parent | 1772814605d6c4ba70d20a525ccb5ef4c591f66a (diff) | |
download | gitea-bfef7d47359117a38cc68d558a16259f0668675c.tar.gz gitea-bfef7d47359117a38cc68d558a16259f0668675c.zip |
Target specific OS for devcontainer base image (#26422)
fixes #25842
credit to philippbeckmann for discovering this
-rw-r--r-- | .devcontainer/devcontainer.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3548878490..7e2294c1e6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "Gitea DevContainer", - "image": "mcr.microsoft.com/devcontainers/go:1.20", + "image": "mcr.microsoft.com/devcontainers/go:1.20-bullseye", "features": { // installs nodejs into container "ghcr.io/devcontainers/features/node:1": { |