From 99b6b70caa4fedda6d56f34a4f83f4350b8092c1 Mon Sep 17 00:00:00 2001 From: Bill Church Date: Mon, 1 Aug 2022 19:07:20 +0000 Subject: [PATCH] chore: setup gpg for dev container --- .devcontainer/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d39247b..bdb7502 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -6,6 +6,8 @@ FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:${VARIANT} # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ # && apt-get -y install --no-install-recommends +RUN apt-get update && apt-get install gnupg2 -y + # [Optional] Uncomment if you want to install an additional version of node using nvm # ARG EXTRA_NODE_VERSION=10 # RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"