From 25c98e2d5bd2773c73e5e3edc398b110e407e227 Mon Sep 17 00:00:00 2001 From: Malte Schmitz Date: Thu, 14 Jan 2021 23:06:58 +0000 Subject: [PATCH] Foo --- .gitpod.Dockerfile | 10 ++++++++++ .gitpod.yml | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..9900cc0 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,10 @@ +FROM gitpod/workspace-full + +# Install custom tools, runtimes, etc. +# For example "bastet", a command-line tetris clone: +# RUN brew install bastet +# +# More information: https://www.gitpod.io/docs/config-docker/ + +RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh \ + && sdk install java 8.0.265-open" \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..33b2aec --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +image: + file: .gitpod.Dockerfile + +tasks: + - init: mvn install -DskipTests=false