Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update components in devcontainer #905

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM mcr.microsoft.com/devcontainers/base:bullseye
FROM mcr.microsoft.com/devcontainers/base:bookworm

ENV CLOUD_SDK_VERSION=480.0.0
# Install gcloud similarly to how it is done in cloud-sdk-docker
Expand Down
12 changes: 5 additions & 7 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,18 @@
},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
// Debian will not work with moby.
// Related to https://github.com/devcontainers/features/issues/831
"moby": false
"moby": true
},
"ghcr.io/devcontainers/features/node:1": {
"version": "22.10.0"
},
"ghcr.io/devcontainers/features/terraform:1": {
// Get version from https://github.com/hashicorp/terraform/releases
"version": "1.8.5",
// Get version from https://github.com/gruntwork-io/terragrunt/releases
"terragrunt": "0.59.4",
"version": "1.9.8",
// We do not use terragrunt.
"terragrunt": "none",
// Get version from https://github.com/terraform-linters/tflint/releases
"tflint": "0.51.1"
"tflint": "0.54.0"
},
"ghcr.io/lukewiwa/features/shellcheck:0": {
// Get version from https://github.com/koalaman/shellcheck/releases
Expand Down