You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/java/.devcontainer/base.Dockerfile
2
+
3
+
# [Choice] Java version: 16
4
+
ARG VARIANT="16"
5
+
FROM mcr.microsoft.com/vscode/devcontainers/java:0-${VARIANT}
6
+
7
+
# [Option] Install Maven
8
+
ARG INSTALL_MAVEN="true"
9
+
ARG MAVEN_VERSION="3.8.3"
10
+
RUN if [ "${INSTALL_MAVEN}" = "true" ]; then su vscode -c "umask 0002 && . /usr/local/sdkman/bin/sdkman-init.sh && sdk install maven \"${MAVEN_VERSION}\""; fi
11
+
12
+
# [Optional] Uncomment this section to install additional OS packages.
13
+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
0 commit comments