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 openvoxserver/Containerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Install JDK
ARG JDK_VERSION=17
RUN apk update && apk upgrade \
&& apk add --no-cache openjdk${JDK_VERSION}-jre-headless bash
&& apk add --no-cache openjdk${JDK_VERSION}-jre-headless bash curl

################################################################################

Expand Down Expand Up @@ -86,7 +86,7 @@
ARG build_date
ARG R10K_VERSION=5.0.0

LABEL org.label-schema.maintainer="Voxpupuli Team <[email protected]>" \

Check warning on line 89 in openvoxserver/Containerfile.alpine

View workflow job for this annotation

GitHub Actions / Build amd64 CI container

Variables should be defined before their use

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

Check warning on line 89 in openvoxserver/Containerfile.alpine

View workflow job for this annotation

GitHub Actions / Build amd64 CI container

Variables should be defined before their use

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

Check warning on line 89 in openvoxserver/Containerfile.alpine

View workflow job for this annotation

GitHub Actions / Build arm64 CI container

Variables should be defined before their use

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

Check warning on line 89 in openvoxserver/Containerfile.alpine

View workflow job for this annotation

GitHub Actions / Build arm64 CI container

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$build_type' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
org.label-schema.vendor="OpenVoxProject" \
org.label-schema.url="https://github.com/OpenVoxProject/container-openvoxserver" \
org.label-schema.vcs-url="https://github.com/OpenVoxProject/container-openvoxserver" \
Expand All @@ -97,7 +97,7 @@
org.label-schema.vcs-ref="$vcs_ref" \
org.label-schema.build-date="$build_date"

ENV AUTOSIGN=true \

Check warning on line 100 in openvoxserver/Containerfile.alpine

View workflow job for this annotation

GitHub Actions / Build amd64 CI container

Sensitive data should not be used in the ARG or ENV commands

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

Check warning on line 100 in openvoxserver/Containerfile.alpine

View workflow job for this annotation

GitHub Actions / Build arm64 CI container

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "INTERMEDIATE_CA_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
CA_ALLOW_SUBJECT_ALT_NAMES=false \
CA_ENABLED=true \
CA_TTL=157680000 \
Expand Down
Loading