From 4946b08d598de907f55553bec82df78b1a2439b5 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Tue, 12 Aug 2025 08:03:02 -0500 Subject: [PATCH] Update DALOREF to use 'master' branch in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 93d38df..170366c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # Stage 1: fetch source (pin to tag/sha) ############################################ FROM alpine:3.20 AS source -ARG DALOREF=tags/1.3 # <-- pin to a released tag or a specific commit sha +ARG DALOREF=master # <-- pin to a released tag or a specific commit sha ARG MIRROR_URL=https://gitea.portal.tulsacounty.org/external-repos/daloradius.git RUN apk add --no-cache git && \ git clone --depth=1 --branch ${DALOREF} ${MIRROR_URL} /src