diff options
| author | Esurio/1673beta <60435625+1673beta@users.noreply.github.com> | 2025-02-08 17:29:51 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-08 08:29:51 +0000 |
| commit | 026ec40b3b5da29362491841d20f3fd7659c4ce5 (patch) | |
| tree | 23aa4c5035ee38a8d6871deeacb21e7a2cf0b76c /.devcontainer/devcontainer.json | |
| parent | fix(backend): use unique `operationId` in the OpenAPI schema (#15420) (diff) | |
| download | sharkey-026ec40b3b5da29362491841d20f3fd7659c4ce5.tar.gz sharkey-026ec40b3b5da29362491841d20f3fd7659c4ce5.tar.bz2 sharkey-026ec40b3b5da29362491841d20f3fd7659c4ce5.zip | |
fix(dev): devcontainerのcorepackのバージョンを指定するように (#15415)
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 713c2e5fdd..8dd9d1c704 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,7 +7,9 @@ "ghcr.io/devcontainers/features/node:1": { "version": "22.11.0" }, - "ghcr.io/devcontainers-contrib/features/corepack:1": {} + "ghcr.io/devcontainers-extra/features/corepack:1": { + "version": "0.31.0" + } }, "forwardPorts": [3000], "postCreateCommand": "/bin/bash .devcontainer/init.sh", |