Skip to content

Commit

Permalink
fix: Add GitHub CLI (#177)
Browse files Browse the repository at this point in the history
fix: Add GitHub CLI
  • Loading branch information
sergey-korenets-fivestars authored Sep 25, 2024
1 parent d13bd47 commit c739e5d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ ARG DOCKER_COMPOSE_2_VERSION=v2.14.2
RUN curl -L "https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_2_VERSION/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose-2 && \
chmod 755 /usr/local/bin/docker-compose-2

ARG GITHUB_CLI_VERSION=2.57.0
RUN curl -Ls "https://github.com/cli/cli/releases/download/v$GITHUB_CLI_VERSION/gh_${GITHUB_CLI_VERSION}_linux_$(dpkg --print-architecture).tar.gz" -o github_cli.tar.gz && \
tar -xzf github_cli.tar.gz && \
chmod +x ./gh_${GITHUB_CLI_VERSION}_linux_$(dpkg --print-architecture)/bin/gh && \
mv ./gh_${GITHUB_CLI_VERSION}_linux_$(dpkg --print-architecture)/bin/gh /usr/local/bin/ && \
rm -rf github_cli.tar.gz && rm -rf gh_${GITHUB_CLI_VERSION}_linux_$(dpkg --print-architecture) && \
gh version

ARG KUBE_VERSION=1.29.8
RUN curl -L -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v$KUBE_VERSION/bin/linux/$(dpkg --print-architecture)/kubectl && \
chmod 755 /usr/local/bin/kubectl
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aladdin"
version = "1.29.8.2"
version = "1.29.8.3"
description = ""
authors = ["Fivestars <dev@fivestars.com>"]
include = [
Expand Down

0 comments on commit c739e5d

Please sign in to comment.