1 Commits
Author SHA1 Message Date
renovate 903c92b0e7 chore(deps): update hadolint/hadolint-action action to v3.5.0
renovate/stability-days Updates have met minimum release age requirement
PR Checks / hadolint (pull_request) Failing after 23s
PR Checks / build-test (pull_request) Successful in 1m4s
2026-09-09 02:16:19 +00:00
2 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ jobs:
- name: Configure git auth - name: Configure git auth
run: | run: |
git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@scm.cabillot.eu/perso/mysql-client.git" git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@scm.cabillot.eu/perso/mysql-client.git"
- uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8 # v1.75.0 - uses: anothrNick/github-tag-action@4ed44965e0db2c5b5e8b8c7c7c8c9c9c9c9c9c9c9 # v1.75.0
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch DEFAULT_BUMP: patch
+2 -4
View File
@@ -4,10 +4,8 @@ LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
# hadolint ignore=DL3018 # hadolint ignore=DL3018
RUN apk add --no-cache mysql-client && \ RUN apk add --no-cache mysql-client && \
rm -rf /usr/share/apk/keys && \ rm -rf /usr/share/apk/keys && \
addgroup -g 1000 muser && \ adduser -D muser
adduser -D -u 1000 -G muser muser
# Numeric uid/gid (DL3066): identity stays resolvable by the host USER muser
USER 1000:1000
ENTRYPOINT [ "/usr/bin/mysql" ] ENTRYPOINT [ "/usr/bin/mysql" ]