Skip to content

Commit

Permalink
bump docker, compose, clean scripts (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
some-natalie authored Jan 5, 2025
1 parent 6a83b4e commit 76ff5d7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions images/rootless-ubuntu-jammy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ARG RUNNER_VERSION=2.321.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

# Docker and Compose arguments
ARG DOCKER_VERSION=27.3.1
ARG COMPOSE_VERSION=v2.31.0
ARG DOCKER_VERSION=27.4.1
ARG COMPOSE_VERSION=v2.32.0

# Dumb-init version
ARG DUMB_INIT_VERSION=1.2.5
Expand Down
4 changes: 2 additions & 2 deletions images/rootless-ubuntu-numbat.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ARG RUNNER_VERSION=2.321.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

# Docker and Compose arguments
ARG DOCKER_VERSION=27.3.1
ARG COMPOSE_VERSION=v2.31.0
ARG DOCKER_VERSION=27.4.1
ARG COMPOSE_VERSION=v2.32.0

# Dumb-init version
ARG DUMB_INIT_VERSION=1.2.5
Expand Down
5 changes: 2 additions & 3 deletions images/software/gh-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ if grep -q "Ubuntu\|Debian" "/etc/os-release"; then
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
apt-get install dirmngr -y
apt-get update
apt-get install gh -y
apt-get autoclean
apt-get autoremove
apt-get install gh -y --no-install-recommends
apt-get clean
rm -rf /var/lib/apt/lists/*
elif grep -q "CentOS\|Red Hat" "/etc/redhat-release"; then
yum-config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
Expand Down
2 changes: 1 addition & 1 deletion images/software/node20.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ NODE_MAJOR=20
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
apt-get update
apt-get install nodejs -y
apt-get autoclean
apt-get clean
apt-get autoremove

0 comments on commit 76ff5d7

Please sign in to comment.