Skip to content
Merged
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 base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM ${BUILD_FROM}

# Environment variables
ENV \

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armhf

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build aarch64

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armv7

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build i386

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build amd64

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armhf

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armv7

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build i386

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build aarch64

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 6 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build amd64

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
PATH="/usr/local/bin:$PATH" \
GPG_KEY="7169605F62C751356D054A26A821E680E5FA6305"

Expand All @@ -13,7 +13,7 @@
# Install base system
ARG PYTHON_VERSION="v3.13.2"
ARG PYTHON_PIP_VERSION="25.0.1"
ARG PYTHON_SETUPTOOLS_VERSION="76.0.0"
ARG PYTHON_SETUPTOOLS_VERSION="77.0.3"
# hadolint ignore=DL3003,DL4006,SC2155
RUN \
apk add --no-cache --virtual .build-dependencies \
Expand Down Expand Up @@ -136,7 +136,7 @@
ARG BUILD_REPOSITORY

# Labels
LABEL \

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armhf

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build aarch64

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armv7

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build i386

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build amd64

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armhf

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build armv7

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build i386

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build aarch64

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

Check warning on line 139 in base/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Build amd64

UndefinedVar: Usage of undefined variable '$BUILD_ARCH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
io.hass.name="Addon Python base for ${BUILD_ARCH}" \
io.hass.description="Home Assistant Community Add-on: ${BUILD_ARCH} Python base image" \
io.hass.arch="${BUILD_ARCH}" \
Expand Down