From 64c21650bbaab978d97ba819ecc373e869b5e9b8 Mon Sep 17 00:00:00 2001 From: TShapinsky Date: Thu, 24 Oct 2024 19:03:02 +0000 Subject: [PATCH] add openssh-client to dockerfile to allow for git ssh pushes --- .devcontainer/Dockerfile | 1 + .devcontainer/devcontainer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6b939e15..4e28ebd0 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -9,6 +9,7 @@ RUN set -eux; \ curl \ ca-certificates \ xz-utils \ + openssh-client \ ; \ rm -rf /var/lib/apt/lists/* diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 90f5a979..ac50d736 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ // Uncomment this and commend "image" out for local devcontainer building. // "build": { // "dockerfile": "Dockerfile", - // "context": "../", + // "context": "../" // }, "image": "ghcr.io/nrel/buildingmotif/devcontainer:ts-devcontainers", "runArgs": ["--net=host"], // Use host network for webapp (which only listens for localhost by default)