From a178d9fe9f139f58c26d2b3b59d523f8af10e309 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Mon, 15 Jun 2020 15:22:05 +0200 Subject: [PATCH] Remove sdkman stuff from gitpod image (#215) --- .gitpod.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 115a8cbf..ac3db2be 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,11 +1,11 @@ FROM gitpod/workspace-full -RUN echo 'unset JAVA_TOOL_OPTIONS' >> /home/gitpod/.bashrc.d/99-clear-java-tool-options +RUN echo 'unset JAVA_TOOL_OPTIONS' >> /home/gitpod/.bashrc.d/99-clear-java-tool-options && rm -rf /home/gitpod/.sdkman RUN curl -fLo cs https://git.io/coursier-cli-linux &&\ chmod +x cs &&\ - ./cs java --jvm adopt:1.8.0-252 --env >> /home/gitpod/.bashrc.d/99-z-cs &&\ - ./cs install --env >> /home/gitpod/.bashrc.d/99-z-cs &&\ + ./cs java --jvm adopt:1.8.0-252 --env >> /home/gitpod/.bashrc.d/90-cs &&\ + ./cs install --env >> /home/gitpod/.bashrc.d/90-cs &&\ ./cs install \ ammonite:2.1.4 \ bloop \