From bb4b927feee53474a43a341bff78dca35452484b Mon Sep 17 00:00:00 2001 From: Bruno Silva Date: Thu, 19 Oct 2023 19:29:30 +0000 Subject: [PATCH] Include `act` in dev container features This allows Github Actions to be used locally. --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5656be0..044af28 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,6 +2,7 @@ "image": "mcr.microsoft.com/devcontainers/universal:2", "features": { "ghcr.io/devcontainers/features/github-cli:1": {}, - "ghcr.io/devcontainers-contrib/features/act:1": {} + "ghcr.io/devcontainers-contrib/features/act:1": {}, + "ghcr.io/devcontainers/features/docker-in-docker:2": {} } }