From 96476ffa79e3e61ba57d159a7af94862251f36ef Mon Sep 17 00:00:00 2001 From: mullerj Date: Tue, 20 Jun 2023 20:13:00 -0400 Subject: [PATCH] Codespace Configurations (#15) * Created devcontainer.json --- .devcontainer/devcontainer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..633f692 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,19 @@ +{ + "image": "mcr.microsoft.com/devcontainers/cpp:1.0.0-buster", + "features": { + "ghcr.io/devcontainers/features/python:1": { + "version": "3.11" + }, + "ghcr.io/devcontainers/features/dotnet:1": { + "version": "6" + }, + "ghcr.io/devcontainers/features/java:1": { + "version": "17", + "installAnt": true, + "antVersion": "1.10.12" + }, + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "version": "20.10" + } + } +}