Update DALOREF to use 'master' branch in Dockerfile
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 36s

This commit is contained in:
2025-08-12 08:03:02 -05:00
parent ab45f05e85
commit 4946b08d59

View File

@@ -4,7 +4,7 @@
# Stage 1: fetch source (pin to tag/sha) # Stage 1: fetch source (pin to tag/sha)
############################################ ############################################
FROM alpine:3.20 AS source 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 ARG MIRROR_URL=https://gitea.portal.tulsacounty.org/external-repos/daloradius.git
RUN apk add --no-cache git && \ RUN apk add --no-cache git && \
git clone --depth=1 --branch ${DALOREF} ${MIRROR_URL} /src git clone --depth=1 --branch ${DALOREF} ${MIRROR_URL} /src