Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions build_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
include:
- release: 8
# renovate: depName=openvox-server openVoxRelease=8
server_version: "8.13.0-1+ubuntu24.04"
server_version: "8.13.0-1+ubuntu26.04"
# renovate: depName=openvoxdb openVoxRelease=8
db_version: "8.13.0-1+ubuntu24.04"
r10k_version: "5.0.0"
db_version: "8.13.0-1+ubuntu26.04"
r10k_version: "5.0.3"
rugged_version: "1.9.0"
jdk_version: "21"
15 changes: 8 additions & 7 deletions openvoxserver/Containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
ARG UBUNTU_VERSION=24.04
ARG UBUNTU_VERSION=26.04
FROM ubuntu:${UBUNTU_VERSION} AS builder

ARG BUILD_PKGS="ruby3.2-dev gcc make cmake pkg-config libssl-dev libc6-dev libssh2-1-dev"
ARG R10K_VERSION=5.0.0
ARG RUGGED_DEPS="libgit2-1.9 libjitterentropy3-dev libzstd-dev"
ARG BUILD_PKGS="ruby3.3-dev gcc make cmake pkg-config libssl-dev libc6-dev libssh2-1-dev ${RUGGED_DEPS}"
ARG R10K_VERSION=5.0.3
ARG RUGGED_VERSION=1.9.0

RUN apt-get update && \
Expand All @@ -15,11 +16,11 @@
ARG vcs_ref
ARG build_type
ARG build_date
ARG PACKAGES="git netbase openssh-client libssh2-1 dumb-init ruby3.2"
ARG UBUNTU_VERSION=24.04
ARG PACKAGES="git netbase openssh-client libssh2-1 dumb-init ruby3.3"
ARG UBUNTU_VERSION=26.04
ARG OPENVOX_RELEASE=8
ARG OPENVOXSERVER_VERSION=8.8.0-1+ubuntu${UBUNTU_VERSION}
ARG OPENVOXDB_VERSION=8.9.0-1+ubuntu${UBUNTU_VERSION}
ARG OPENVOXSERVER_VERSION=8.13.0-1+ubuntu${UBUNTU_VERSION}
ARG OPENVOXDB_VERSION=8.13.0-1+ubuntu${UBUNTU_VERSION}
ARG OPENVOX_USER_UID=999
ARG OPENVOX_USER_GID=999
ARG OPENVOX_RELEASE_PACKAGE=openvox${OPENVOX_RELEASE}-release-ubuntu${UBUNTU_VERSION}.deb
Expand All @@ -35,7 +36,7 @@
org.label-schema.vcs-ref="$vcs_ref" \
org.label-schema.build-date="$build_date"

ENV AUTOSIGN=true \

Check warning on line 39 in openvoxserver/Containerfile

View workflow job for this annotation

GitHub Actions / Scan 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/

Check warning on line 39 in openvoxserver/Containerfile

View workflow job for this annotation

GitHub Actions / Scan 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 39 in openvoxserver/Containerfile

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/

Check warning on line 39 in openvoxserver/Containerfile

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/
CA_ALLOW_SUBJECT_ALT_NAMES=false \
CA_ENABLED=true \
CA_TTL=157680000 \
Expand Down
Loading