Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ On top of `cimg/openjdk:8.0-node` and used for full Player polyglot builds. Cont
- bazelisk
- rbenv
- Android SDK & NDK
- gh

# Slim
On top of `cimg/node:22.21` and used for only builds that are just js. Contains:
Expand Down
7 changes: 7 additions & 0 deletions full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,10 @@ RUN sudo ln -sf /usr/bin/python3 /usr/bin/python
RUN sudo apt-get update \
&& sudo apt-get install libicu-dev -y \
&& sudo rm -rf /var/lib/apt/lists/*

ENV GH_VERSION=2.89.0
RUN wget -q https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz -O gh.tar.gz && \
sudo mkdir -p /opt/gh-v${GH_VERSION} && \
sudo tar -xzf gh.tar.gz -C /opt/gh-v${GH_VERSION} --strip-components=1 && \
sudo ln -s /opt/gh-v${GH_VERSION}/bin/gh /usr/local/bin/gh && \
rm gh.tar.gz
Loading