Skip to content

Commit 1c2651a

Browse files
ad-server: support samba version suffix as a container build arg
Signed-off-by: John Mulligan <[email protected]>
1 parent 2f7423e commit 1c2651a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

images/ad-server/Containerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ RUN SAMBACC_DISTNAME=latest \
1111

1212
FROM registry.fedoraproject.org/fedora:35
1313
ARG INSTALL_PACKAGES_FROM=default
14+
ARG SAMBA_VERSION_SUFFIX=""
1415
ARG SAMBA_SPECIFICS=
1516

1617
MAINTAINER John Mulligan <[email protected]>
1718

1819
COPY install-packages.sh /usr/local/bin/install-packages.sh
19-
RUN /usr/local/bin/install-packages.sh "$INSTALL_PACKAGES_FROM"
20+
RUN /usr/local/bin/install-packages.sh \
21+
"${INSTALL_PACKAGES_FROM}" \
22+
"${SAMBA_VERSION_SUFFIX}"
2023

2124
COPY --from=builder \
2225
/srv/dist/latest \

0 commit comments

Comments
 (0)