Skip to content
Open
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
9 changes: 5 additions & 4 deletions openvoxserver/Containerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
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"
# rugged required libgit2
ARG BUILD_PKGS="ruby3.3-dev gcc make cmake pkg-config libssl-dev libc6-dev libssh2-1-dev libgit2-1.9"
ARG R10K_VERSION=5.0.0
ARG RUGGED_VERSION=1.9.0

Expand All @@ -15,8 +16,8 @@ FROM ubuntu:${UBUNTU_VERSION} AS final
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}
Expand Down
Loading