diff --git a/Dockerfile b/Dockerfile index fd7e48c..229be96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,4 +65,14 @@ RUN set -ex \ RUN adduser --disabled-password --gecos '' ci && adduser ci sudo +# Setup Launchable +RUN apt-get install -y --no-install-recommends \ + python3-venv \ + python3-setuptools \ + python3-pip \ + pipx \ + openjdk-8-jdk +ENV PATH="$PATH:/root/.local/bin" +RUN pipx install launchable + USER ci