6 Commits
Author SHA1 Message Date
jcabillot 866a71f1d9 Merge pull request 'ci: add Renovate workflow' (#22) from add-renovate-workflow into master
Main Release / test (push) Successful in 1m22s
Renovate / renovate (push) Successful in 2m55s
Main Release / hadolint (push) Failing after 12m59s
Main Release / tag (push) Failing after 10m57s
Reviewed-on: #22
2026-08-03 16:17:43 -04:00
OpenCode Cabillot e169bbbe53 ci: add Renovate workflow
PR Checks / hadolint (pull_request) Successful in 12s
PR Checks / build-test (pull_request) Successful in 30s
2026-08-02 23:42:09 +00:00
opencodecabilloteu b37c09519b Merge pull request 'chore(deps): update hadolint/hadolint-action action to v3.4.0' (#20) from renovate/hadolint-hadolint-action-3.x into master
Main Release / hadolint (push) Successful in 12s
Main Release / test (push) Successful in 32s
Main Release / tag (push) Successful in 45s
2026-08-02 13:30:35 -04:00
renovate a8629e8b75 chore(deps): update hadolint/hadolint-action action to v3.4.0
renovate/stability-days Updates have met minimum release age requirement
PR Checks / hadolint (pull_request) Successful in 31s
PR Checks / build-test (pull_request) Successful in 37s
2026-08-02 17:08:48 +00:00
jcabillot 227eca7c29 Merge pull request 'fix: use numeric UID for USER directive (DL3066)' (#21) from fix/hadolint-DL3066-numeric-uid into master
Main Release / test (push) Successful in 3m27s
Main Release / hadolint (push) Successful in 34s
Main Release / tag (push) Successful in 56s
Reviewed-on: #21
2026-08-02 13:04:25 -04:00
Julien Cabillot 2e5ccec116 fix: use numeric UID for USER directive (DL3066)
PR Checks / hadolint (pull_request) Successful in 32s
PR Checks / build-test (pull_request) Successful in 1m47s
2026-08-02 16:58:50 +00:00
2 changed files with 14 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
name: Renovate
on:
push:
branches:
- master
workflow_dispatch:
jobs:
renovate:
uses: perso/gitea-pipelines/.gitea/workflows/renovate.yaml@main
secrets: inherit
+2 -2
View File
@@ -3,7 +3,7 @@ LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
# hadolint ignore=DL3018 # hadolint ignore=DL3018
RUN apk add --no-cache iperf3 && \ RUN apk add --no-cache iperf3 && \
adduser -D iperf adduser -D -u 1000 iperf
## Add Tini ## Add Tini
ENV "TINI_VERSION" "v0.16.1" ENV "TINI_VERSION" "v0.16.1"
@@ -11,7 +11,7 @@ ENV "TINI_VERSION" "v0.16.1"
#RUN chmod +x "/tini" #RUN chmod +x "/tini"
#ENTRYPOINT ["/tini", "--"] #ENTRYPOINT ["/tini", "--"]
USER "iperf" USER 1000
# hadolint ignore=DL4004 # hadolint ignore=DL4004
ENTRYPOINT [ "/usr/bin/iperf3" ] ENTRYPOINT [ "/usr/bin/iperf3" ]