diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-06-21 04:44:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 16:44:58 +0800 |
commit | 6a8ebaf22b8e85049ca44158ff7ff7c10c39e0f2 (patch) | |
tree | 5f73c23bf102c0d4dcf3280f5c74d73b0081716d /.devcontainer/devcontainer.json | |
parent | 2cdf260f42d178d23a8db70db35664511aeab31e (diff) | |
download | gitea-6a8ebaf22b8e85049ca44158ff7ff7c10c39e0f2.tar.gz gitea-6a8ebaf22b8e85049ca44158ff7ff7c10c39e0f2.zip |
add python/poetry to devcontainer (#25407)
with introduction of linter, this adds python/poetry to devcontainer
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r-- | .devcontainer/devcontainer.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 31e42d0ab3..be34bfd02d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,9 @@ "ghcr.io/devcontainers/features/node:1": { "version":"20" }, - "ghcr.io/devcontainers/features/git-lfs:1.1.0": {} + "ghcr.io/devcontainers/features/git-lfs:1.1.0": {}, + "ghcr.io/devcontainers-contrib/features/poetry:2": {}, + "ghcr.io/devcontainers/features/python:1": {} }, "customizations": { "vscode": { |