Update to 0.195.0

This commit is contained in:
Chuck Lantz
2021-09-17 00:53:48 +00:00
committed by GitHub
parent 7c7995f91b
commit 073781aa50
2 changed files with 7 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.191.0/containers/java/.devcontainer/base.Dockerfile # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/java/.devcontainer/base.Dockerfile
# [Choice] Java version: 8, 11, 16 # [Choice] Java version (use -bullseye variants on local arm64/Apple Silicon): 8, 11, 16, 8-bullseye, 11-bullseye, 16-bullseye, 8-buster, 11-buster, 16-buster
ARG VARIANT=11 ARG VARIANT=11-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/java:0-${VARIANT} FROM mcr.microsoft.com/vscode/devcontainers/java:0-${VARIANT}
# [Option] Install Maven # [Option] Install Maven

View File

@@ -1,12 +1,14 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: // For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.191.0/containers/java // https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/java
{ {
"name": "Java", "name": "Java",
"build": { "build": {
"dockerfile": "Dockerfile", "dockerfile": "Dockerfile",
"args": { "args": {
// Update the VARIANT arg to pick a Java version: 8, 11, 14 // Update the VARIANT arg to pick a Java version: 8, 11, 14
"VARIANT": "11", // Append -bullseye or -buster to pin to an OS version.
// Use the -bullseye variants on local arm64/Apple Silicon.
"VARIANT": "11-bullseye",
// Options // Options
"INSTALL_MAVEN": "true", "INSTALL_MAVEN": "true",
"MAVEN_VERSION": "3.6.3", "MAVEN_VERSION": "3.6.3",