From ec21d480e99515bab808352e8027b1b784c324e1 Mon Sep 17 00:00:00 2001 From: Georg K Date: Thu, 19 Jun 2025 05:06:33 +0300 Subject: [PATCH] fix: hosted env --- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- hosted/install.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7eadda6..68ed50e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,7 @@ release-hosted: stage: release-hosted image: alpine:latest variables: - VERSION: "1.0.2" + VERSION: "1.0.3" script: - apk add --no-cache curl - chmod a+x hosted/install.sh diff --git a/Dockerfile b/Dockerfile index 715e7b1..8ccc80b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY local-noble.list /etc/apt/sources.list.d/ubuntu.sources RUN apt-get update && apt-get install -y apt-transport-https ca-certificates curl software-properties-common gpg RUN curl -fsSL http://connectone.pro/gpg | gpg --dearmor -o /usr/share/keyrings/connectone.gpg && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/connectone.gpg] \ - https://nexus.connectone.pro/repository/radius noble main" | tee /etc/apt/sources.list.d/connectone.list \ + https://nexus.connectone.pro/repository/radius bionic main" | tee /etc/apt/sources.list.d/connectone.list \ > /dev/null RUN apt-get update && apt-get install -y libfreeradius3=3.2.8+git freeradius-common=3.2.8+git \ freeradius-postgresql=3.2.8+git freeradius-rest=3.2.8+git freeradius-utils=3.2.8+git freeradius=3.2.8+git && \ diff --git a/hosted/install.sh b/hosted/install.sh index 5ee4c22..14b7edc 100644 --- a/hosted/install.sh +++ b/hosted/install.sh @@ -16,7 +16,7 @@ apt-get install -y apt-transport-https ca-certificates curl software-properties- echo "Installing freeradius..." curl -fsSL http://connectone.pro/gpg | gpg --dearmor -o /usr/share/keyrings/connectone.gpg && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/connectone.gpg] \ - https://nexus.connectone.pro/repository/radius noble main" | tee /etc/apt/sources.list.d/connectone.list \ + https://nexus.connectone.pro/repository/radius bionic main" | tee /etc/apt/sources.list.d/connectone.list \ > /dev/null apt-get update && apt-get install -y libfreeradius3=${FREERADIUS_TAG}+git freeradius-common=${FREERADIUS_TAG}+git \ freeradius-postgresql=${FREERADIUS_TAG}+git freeradius-rest=${FREERADIUS_TAG}+git freeradius-utils=${FREERADIUS_TAG}+git freeradius=${FREERADIUS_TAG}+git