microsoft/gctoolkit
Publicmirrored fromhttps://github.com/microsoft/gctoolkitAvailable
.devcontainer/Dockerfile
11lines · modecode
| 1 | # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/ubuntu/.devcontainer/base.Dockerfile |
| 2 | |
| 3 | # [Choice] Ubuntu version: bionic, focal |
| 4 | ARG VARIANT="focal" |
| 5 | FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT} |
| 6 | |
| 7 | # Install Microsoft Build of OpenJDK 11 |
| 8 | ENV JAVA_HOME /usr/lib/jvm/msopenjdk-11-amd64 |
| 9 | ENV PATH "${JAVA_HOME}/bin:${PATH}" |
| 10 | |
| 11 | COPY --from=mcr.microsoft.com/openjdk/jdk:11-ubuntu $JAVA_HOME $JAVA_HOME |
| 12 | |