Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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