Skip to content
Open
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
2 changes: 1 addition & 1 deletion images/gitops.containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54
FROM ubuntu:24.04@sha256:7a398144c5a2fa7dbd9362e460779dc6659bd9b19df50f724250c62ca7812eb3

RUN export DEBIAN_FRONTEND=noninteractive; apt-get -y update && apt-get install -y \
ca-certificates lsb-release sudo fakeroot \
Expand Down
2 changes: 1 addition & 1 deletion images/ubuntu-24.04.containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54
FROM ubuntu:24.04@sha256:7a398144c5a2fa7dbd9362e460779dc6659bd9b19df50f724250c62ca7812eb3

RUN export DEBIAN_FRONTEND=noninteractive; apt-get -y update && apt-get install -y \
ca-certificates lsb-release sudo fakeroot \
Expand Down
2 changes: 1 addition & 1 deletion runners/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# renovate: datasource=github-releases depName=actions/runner-container-hooks
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.8.0
#
ARG TARGETARCH="${TARGETARCH:-}"

Check warning on line 8 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETARCH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ARG TARGETOS="${TARGETOS:-linux}"

Check warning on line 9 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETOS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Fetch runner
# ref: https://github.com/actions/runner/blob/main/images/Dockerfile
Expand All @@ -32,9 +32,9 @@


## --- Actions Runner Image
FROM ubuntu:24.04@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54
FROM ubuntu:24.04@sha256:7a398144c5a2fa7dbd9362e460779dc6659bd9b19df50f724250c62ca7812eb3
ARG TARGETARCH="${TARGETARCH:-}"

Check warning on line 36 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETARCH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ARG TARGETOS="${TARGETOS:-linux}"

Check warning on line 37 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETOS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# renovate: datasource=github-releases depName=bitdeps/podman-static
ARG PODMAN_VERSION=5.3.1
Expand Down