Skip to content

Commit

Permalink
Allow configuring base devcontainer image
Browse files Browse the repository at this point in the history
  • Loading branch information
mooselumph committed Jan 18, 2024
1 parent 669be3d commit 0ff82ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

# [Choice] Go version (use -bullseye variants on local arm64/Apple Silicon): 1, 1.19, 1.18, 1-bullseye, 1.19-bullseye, 1.18-bullseye, 1-buster, 1.19-buster, 1.18-buster
ARG VARIANT="1-1.21-bullseye"
FROM mcr.microsoft.com/vscode/devcontainers/go:${VARIANT}
ARG BASE="mcr.microsoft.com/vscode/devcontainers/go"
FROM ${BASE}:${VARIANT}


# [Choice] Node.js version: none, lts/*, 18, 16, 14
ARG NODE_VERSION="none"
Expand Down

0 comments on commit 0ff82ec

Please sign in to comment.