setup dev containers again

This commit is contained in:
41666 2020-12-03 12:56:12 -05:00
parent c23b84c4fa
commit 80db505a11
3 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,8 @@
FROM mcr.microsoft.com/vscode/devcontainers/go:1.15
# Install Node.js
ARG NODE_VERSION="lts/*"
RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"
# Install Wrangler
RUN su vscode -c "npm install -g wrangler"