Compare commits

1 Commits

Author SHA1 Message Date
9bf0c90601 chore(deps): update docker/setup-buildx-action action to v4
All checks were successful
CI / ci (pull_request) Successful in 4s
Validate PR Title / validate (pull_request) Successful in 1s
2026-03-05 08:01:16 +00:00
2 changed files with 11 additions and 11 deletions

View File

@@ -69,7 +69,7 @@ jobs:
- name: Extract metadata (tags, labels) for Docker - name: Extract metadata (tags, labels) for Docker
id: meta id: meta
uses: docker/metadata-action@v6 uses: docker/metadata-action@v5
with: with:
tags: type=semver,pattern=v{{version}},value=${{ needs.tag.outputs.tag_name }} tags: type=semver,pattern=v{{version}},value=${{ needs.tag.outputs.tag_name }}
images: | images: |
@@ -85,18 +85,18 @@ jobs:
printf "Tags:\n${{ steps.meta.outputs.tags }}" printf "Tags:\n${{ steps.meta.outputs.tags }}"
- name: Build images - name: Build images
uses: docker/build-push-action@v7 uses: docker/build-push-action@v6
with: with:
context: . context: .
push: true push: false
load: true load: true
annotations: ${{ steps.meta.outputs.annotations }} annotations: ${{ steps.meta.outputs.annotations }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
# - name: Push images - name: Push images
# run: | run: |
# strtags="${{ steps.meta.outputs.tags }}" strtags="${{ steps.meta.outputs.tags }}"
# readarray -t lines <<<"$strtags" readarray -t lines <<<"$strtags"
# for element in "${lines[@]}"; do docker push "$element"; done for element in "${lines[@]}"; do docker push "$element"; done
# unset strtags lines unset strtags lines

View File

@@ -1,4 +1,4 @@
FROM alpine:3.23.4 AS webproc FROM alpine:3.23.3 AS webproc
SHELL ["/bin/ash", "-o", "pipefail", "-c"] SHELL ["/bin/ash", "-o", "pipefail", "-c"]
ENV WEBPROCVERSION=0.4.0 ENV WEBPROCVERSION=0.4.0
ENV WEBPROCURL=https://github.com/jpillora/webproc/releases/download/v$WEBPROCVERSION/webproc_"$WEBPROCVERSION"_linux_amd64.gz ENV WEBPROCURL=https://github.com/jpillora/webproc/releases/download/v$WEBPROCVERSION/webproc_"$WEBPROCVERSION"_linux_amd64.gz
@@ -6,7 +6,7 @@ RUN apk add --no-cache curl=8.17.0-r1 && \
curl -sL $WEBPROCURL | gzip -d - > /usr/local/bin/webproc && \ curl -sL $WEBPROCURL | gzip -d - > /usr/local/bin/webproc && \
chmod +x /usr/local/bin/webproc chmod +x /usr/local/bin/webproc
FROM alpine:3.23.4 FROM alpine:3.23.3
LABEL maintainer="Luke Tainton <luke@tainton.uk>" LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/docker-radius" LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/docker-radius"
LABEL org.opencontainers.image.description="FreeRADIUS server with web administration interface" LABEL org.opencontainers.image.description="FreeRADIUS server with web administration interface"