chore: setup gpg for dev container

This commit is contained in:
Bill Church 2022-08-01 19:07:20 +00:00
parent 361e0913e5
commit 99b6b70caa
No known key found for this signature in database
GPG key ID: 10DD056C65752AA0

View file

@ -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 <your-package-list-here>
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}"