Skip to content

Commit

Permalink
bump deps (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
some-natalie authored Nov 12, 2024
1 parent 91a3cd9 commit b116b03
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There are currently 5 images that are "prebuilt" by this project, although you c
| image name | base image | CVE count<br>(crit/high/med+below) | archs | virtualization? | sudo? | notes |
|---|---|---|---|---|---|---|
| ubi8 | [ubi8-init:8.10](https://catalog.redhat.com/software/containers/ubi8/ubi-init/5c359b97d70cc534b3a378c8) | 4/16/564 | x86_64<br>arm64 | :x: | :x: | n/a |
| ubi9 | [ubi9-init:9.4](https://catalog.redhat.com/software/containers/ubi9-init/6183297540a2d8e95c82e8bd) | 0/16/575 | x86_64<br>arm64 | :x: | :x: | n/a |
| ubi9 | [ubi9-init:9.5](https://catalog.redhat.com/software/containers/ubi9-init/6183297540a2d8e95c82e8bd) | 0/16/575 | x86_64<br>arm64 | :x: | :x: | n/a |
| rootless-ubuntu-jammy | [ubuntu:jammy](https://hub.docker.com/_/ubuntu) | 0/14/152 | x86_64<br>arm64 | rootless Docker-in-Docker | :x: | [common rootless problems](docs/tips-and-tricks.md#rootless-images) |
| rootless-ubuntu-numbat | [ubuntu:numbat](https://hub.docker.com/_/ubuntu) | 0/14/67 | x86_64<br>arm64 | rootless Docker-in-Docker | :x: | [common rootless problems](docs/tips-and-tricks.md#rootless-images) |
| wolfi:latest | [wolfi-base:latest](https://images.chainguard.dev/directory/image/wolfi-base/versions) | 0/4/3 | x86_64<br>arm64 | :x: | :x: | n/a |
Expand Down
4 changes: 2 additions & 2 deletions images/rootless-ubuntu-jammy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ FROM ubuntu:22.04

# GitHub runner arguments
ARG RUNNER_VERSION=2.320.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

# Docker and Compose arguments
ARG DOCKER_VERSION=27.3.1
ARG COMPOSE_VERSION=v2.29.6
ARG COMPOSE_VERSION=v2.30.3

# 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 @@ -2,11 +2,11 @@ FROM ubuntu:24.04

# GitHub runner arguments
ARG RUNNER_VERSION=2.320.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

# Docker and Compose arguments
ARG DOCKER_VERSION=27.3.1
ARG COMPOSE_VERSION=v2.29.6
ARG COMPOSE_VERSION=v2.30.3

# Dumb-init version
ARG DUMB_INIT_VERSION=1.2.5
Expand Down
2 changes: 1 addition & 1 deletion images/ubi8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LABEL org.opencontainers.image.documentation="https://github.com/some-natalie/ku
# Arguments
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.320.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

# Shell setup
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down
4 changes: 2 additions & 2 deletions images/ubi9.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/ubi-init:9.4
FROM registry.access.redhat.com/ubi9/ubi-init:9.5

LABEL org.opencontainers.image.source="https://github.com/some-natalie/kubernoodles"
LABEL org.opencontainers.image.path="images/ubi9.Dockerfile"
Expand All @@ -11,7 +11,7 @@ LABEL org.opencontainers.image.documentation="https://github.com/some-natalie/ku
# Arguments
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.320.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

# Shell setup
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion images/wolfi.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LABEL org.opencontainers.image.documentation="https://github.com/some-natalie/ku
# Arguments
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.320.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.2
ARG DOTNET_VERSION=7

# Set up the non-root user (runner)
Expand Down

0 comments on commit b116b03

Please sign in to comment.