From b1de6ad34623b2171ec54d9038ad94415211b3f0 Mon Sep 17 00:00:00 2001 From: Justin Grote <15258962+JustinGrote@users.noreply.github.com.> Date: Fri, 16 May 2025 07:08:11 -0700 Subject: [PATCH] Testing Alt Override --- .devcontainer/Dockerfile | 2 ++ .devcontainer/devcontainer.json | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..1f5ac38 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,2 @@ +FROM mcr.microsoft.com/devcontainers/base +ENV IS_REPO_DEVCONTAINER=true \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ec06521 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,8 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet +{ + "name": "ModuleFast", + "build": { + "dockerfile": "Dockerfile" + } +}