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
2 changes: 1 addition & 1 deletion apps/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG VERSION="3.23.3"
ARG VERSION="3.23.4"
ARG REVISION=""

FROM alpine:$VERSION
Expand All @@ -8,9 +8,9 @@
LABEL org.label-schema.description="Base Image customed for rtrox images."
LABEL org.label-schema.vendor="rtrox"
LABEL org.label-schema.url="https://github.com/rtrox/containers"
LABEL org.label-schema.version=$VERSION

Check warning on line 11 in apps/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test alpine (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$VERSION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.label-schema.vcs-url="https://github.com/rtrox/containers"
LABEL org.label-schema.vcs-ref=$REVISION

Check warning on line 13 in apps/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test alpine (linux/amd64)

Variables should be defined before their use

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

USER root

Expand Down
2 changes: 1 addition & 1 deletion apps/avahi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.23.3
FROM alpine:3.23.4
# https://github.com/flungo-docker/avahi

ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/dnsmasq/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ARG VERSION
ARG REVISION

FROM alpine:3.23.3
FROM alpine:3.23.4

LABEL maintainer="rtrox <rtrox@noreply.github.com"
LABEL org.label-schema.name="keepalived"
LABEL org.label-schema.description="Minimal Keepalived Container"
LABEL org.label-schema.vendor="rtrox"
LABEL org.label-schema.url="https://github.com/rtrox/containers"
LABEL org.label-schema.version=$VERSION

Check warning on line 11 in apps/dnsmasq/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test dnsmasq (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$VERSION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.label-schema.vcs-url="https://github.com/rtrox/containers"
LABEL org.label-schema.vcs-ref=$REVISION

Check warning on line 13 in apps/dnsmasq/Dockerfile

View workflow job for this annotation

GitHub Actions / build-images / Build/Test dnsmasq (linux/amd64)

Variables should be defined before their use

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

COPY files/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion apps/keepalived/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.23.3
FROM alpine:3.23.4
# https://github.com/flungo-docker/avahi

ARG VERSION
Expand Down
Loading