-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
1,918 additions
and
0 deletions.
There are no files selected for viewing
145 changes: 145 additions & 0 deletions
145
.github/docker/debian/bookworm/amd64/fse.release.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
ARG BUILDER_IMAGE=debian:bookworm-20240513 | ||
|
||
FROM ${BUILDER_IMAGE} AS builder | ||
|
||
ARG MAINTAINER_NAME="Andrey Volk" | ||
ARG MAINTAINER_EMAIL="[email protected]" | ||
|
||
ARG CODENAME=bookworm | ||
ARG ARCH=amd64 | ||
|
||
# Credentials | ||
ARG REPO_DOMAIN=fsa.freeswitch.com | ||
ARG REPO_USERNAME=user | ||
|
||
ARG BUILD_NUMBER=42 | ||
ARG GIT_SHA=0000000000 | ||
|
||
ARG DATA_DIR=/data | ||
|
||
LABEL maintainer="${MAINTAINER_NAME} <${MAINTAINER_EMAIL}>" | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get -q update \ | ||
&& apt-get -y -q install \ | ||
apt-transport-https \ | ||
autoconf \ | ||
automake \ | ||
build-essential \ | ||
ca-certificates \ | ||
cmake \ | ||
curl \ | ||
debhelper \ | ||
devscripts \ | ||
dh-autoreconf \ | ||
dos2unix \ | ||
doxygen \ | ||
dpkg-dev \ | ||
git \ | ||
gnupg2 \ | ||
graphviz \ | ||
libglib2.0-dev \ | ||
libssl-dev \ | ||
lsb-release \ | ||
pkg-config \ | ||
unzip \ | ||
wget | ||
|
||
RUN update-ca-certificates --fresh | ||
|
||
RUN echo "export CODENAME=${CODENAME}" | tee ~/.env \ | ||
&& echo "export ARCH=${ARCH}" | tee -a ~/.env \ | ||
&& chmod +x ~/.env | ||
|
||
RUN . ~/.env && cat <<EOF > /etc/apt/sources.list.d/freeswitch.list | ||
deb https://${REPO_DOMAIN}/repo/deb/fsa ${CODENAME} 1.8 | ||
deb-src https://${REPO_DOMAIN}/repo/deb/fsa ${CODENAME} 1.8 | ||
EOF | ||
|
||
RUN git config --global --add safe.directory '*' \ | ||
&& git config --global user.name "${MAINTAINER_NAME}" \ | ||
&& git config --global user.email "${MAINTAINER_EMAIL}" | ||
|
||
RUN --mount=type=secret,id=REPO_PASSWORD,required=true \ | ||
printf "machine ${REPO_DOMAIN} " > /etc/apt/auth.conf && \ | ||
printf "login ${REPO_USERNAME} " >> /etc/apt/auth.conf && \ | ||
printf "password " >> /etc/apt/auth.conf && \ | ||
cat /run/secrets/REPO_PASSWORD >> /etc/apt/auth.conf && \ | ||
sha512sum /run/secrets/REPO_PASSWORD && \ | ||
curl \ | ||
--fail \ | ||
--netrc-file /etc/apt/auth.conf \ | ||
https://${REPO_DOMAIN}/repo/deb/fsa/pubkey.gpg \ | ||
| apt-key add - && \ | ||
apt-get --quiet update && \ | ||
apt-get --yes --quiet install \ | ||
libexpat1-dev \ | ||
libfreeswitch-dev \ | ||
libfreeswitch1 \ | ||
libks2 \ | ||
libsofia-sip-ua-dev \ | ||
libspandsp3-dev \ | ||
signalwire-client-c2 \ | ||
&& rm -f /etc/apt/auth.conf | ||
|
||
# Bootstrap and Build | ||
RUN wget -O - https://www.unimrcp.org/project/component-view/unimrcp-deps-1-6-0-tar-gz/download \ | ||
| tar xvz -C /root | ||
|
||
WORKDIR /root/unimrcp-deps-1.6.0/libs/apr | ||
RUN CFLAGS="-fPIC" ./configure \ | ||
--disable-shared \ | ||
--enable-static \ | ||
--prefix=/usr/local/apr \ | ||
&& make install | ||
|
||
WORKDIR /root/unimrcp-deps-1.6.0/libs/apr-util | ||
RUN CFLAGS="-fPIC" ./configure \ | ||
--prefix=/usr/local/apr \ | ||
--with-apr=/usr/local/apr \ | ||
--with-expat=/usr \ | ||
&& make install | ||
|
||
WORKDIR /root | ||
RUN git clone https://github.com/unispeech/unimrcp.git | ||
|
||
WORKDIR /root/unimrcp | ||
RUN ./bootstrap \ | ||
&& ./configure \ | ||
--with-sofia-sip=/usr \ | ||
&& make install | ||
|
||
COPY . ${DATA_DIR} | ||
WORKDIR ${DATA_DIR} | ||
|
||
ENV UNIMRCP_CFLAGS="-I/usr/local/unimrcp/include -I/usr/local/apr/include/apr-1/" | ||
ENV UNIMRCP_LIBS="/usr/local/unimrcp/lib/libunimrcpclient.a /usr/local/apr/lib/libaprutil-1.a /usr/local/apr/lib/libapr-1.a -lexpat -lsofia-sip-ua -luuid -lcrypt -lpthread -lm" | ||
|
||
#RUN ./bootstrap.sh \ | ||
# && ./configure \ | ||
# && make install | ||
|
||
RUN . ~/.env \ | ||
&& dch \ | ||
--controlmaint \ | ||
--distribution "${CODENAME}" \ | ||
--force-bad-version \ | ||
--force-distribution \ | ||
--newversion "${BUILD_NUMBER}-${GIT_SHA}~${CODENAME}" \ | ||
--package "freeswitch-mod-unimrcp" \ | ||
"Build, ${GIT_SHA}" \ | ||
&& debuild \ | ||
--preserve-env \ | ||
--no-tgz-check \ | ||
--build=binary \ | ||
--unsigned-source \ | ||
--unsigned-changes \ | ||
&& mkdir OUT \ | ||
&& mv -v ../*.{deb,changes} OUT/. | ||
|
||
# Artifacts image (mandatory part, the resulting image must have a single filesystem layer) | ||
FROM scratch | ||
COPY --from=builder /data/OUT/ / |
147 changes: 147 additions & 0 deletions
147
.github/docker/debian/bookworm/amd64/public.release.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
ARG BUILDER_IMAGE=debian:bookworm-20240513 | ||
|
||
FROM ${BUILDER_IMAGE} AS builder | ||
|
||
ARG MAINTAINER_NAME="Andrey Volk" | ||
ARG MAINTAINER_EMAIL="[email protected]" | ||
|
||
ARG CODENAME=bookworm | ||
ARG ARCH=amd64 | ||
|
||
# Credentials | ||
ARG REPO_DOMAIN=freeswitch.signalwire.com | ||
ARG REPO_USERNAME=user | ||
|
||
ARG BUILD_NUMBER=42 | ||
ARG GIT_SHA=0000000000 | ||
|
||
ARG GPG_KEY="/usr/share/keyrings/signalwire-freeswitch-repo.gpg" | ||
|
||
ARG DATA_DIR=/data | ||
|
||
LABEL maintainer="${MAINTAINER_NAME} <${MAINTAINER_EMAIL}>" | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get -q update \ | ||
&& apt-get -y -q install \ | ||
apt-transport-https \ | ||
autoconf \ | ||
automake \ | ||
build-essential \ | ||
ca-certificates \ | ||
cmake \ | ||
curl \ | ||
debhelper \ | ||
devscripts \ | ||
dh-autoreconf \ | ||
dos2unix \ | ||
doxygen \ | ||
dpkg-dev \ | ||
git \ | ||
gnupg2 \ | ||
graphviz \ | ||
libglib2.0-dev \ | ||
libssl-dev \ | ||
lsb-release \ | ||
pkg-config \ | ||
unzip \ | ||
wget | ||
|
||
RUN update-ca-certificates --fresh | ||
|
||
RUN echo "export CODENAME=${CODENAME}" | tee ~/.env \ | ||
&& echo "export ARCH=${ARCH}" | tee -a ~/.env \ | ||
&& chmod +x ~/.env | ||
|
||
RUN . ~/.env && cat <<EOF > /etc/apt/sources.list.d/freeswitch.list | ||
deb [signed-by=${GPG_KEY}] https://${REPO_DOMAIN}/repo/deb/debian-release ${CODENAME} main | ||
deb-src [signed-by=${GPG_KEY}] https://${REPO_DOMAIN}/repo/deb/debian-release ${CODENAME} main | ||
EOF | ||
|
||
RUN git config --global --add safe.directory '*' \ | ||
&& git config --global user.name "${MAINTAINER_NAME}" \ | ||
&& git config --global user.email "${MAINTAINER_EMAIL}" | ||
|
||
RUN --mount=type=secret,id=REPO_PASSWORD,required=true \ | ||
printf "machine ${REPO_DOMAIN} " > /etc/apt/auth.conf && \ | ||
printf "login ${REPO_USERNAME} " >> /etc/apt/auth.conf && \ | ||
printf "password " >> /etc/apt/auth.conf && \ | ||
cat /run/secrets/REPO_PASSWORD >> /etc/apt/auth.conf && \ | ||
sha512sum /run/secrets/REPO_PASSWORD && \ | ||
curl \ | ||
--fail \ | ||
--netrc-file /etc/apt/auth.conf \ | ||
--output ${GPG_KEY} \ | ||
https://${REPO_DOMAIN}/repo/deb/debian-release/signalwire-freeswitch-repo.gpg && \ | ||
file ${GPG_KEY} && \ | ||
apt-get --quiet update && \ | ||
apt-get --yes --quiet install \ | ||
libexpat1-dev \ | ||
libfreeswitch-dev \ | ||
libfreeswitch1 \ | ||
libks2 \ | ||
libsofia-sip-ua-dev \ | ||
libspandsp3-dev \ | ||
signalwire-client-c2 \ | ||
&& rm -f /etc/apt/auth.conf | ||
|
||
# Bootstrap and Build | ||
RUN wget -O - https://www.unimrcp.org/project/component-view/unimrcp-deps-1-6-0-tar-gz/download \ | ||
| tar xvz -C /root | ||
|
||
WORKDIR /root/unimrcp-deps-1.6.0/libs/apr | ||
RUN CFLAGS="-fPIC" ./configure \ | ||
--disable-shared \ | ||
--enable-static \ | ||
--prefix=/usr/local/apr \ | ||
&& make install | ||
|
||
WORKDIR /root/unimrcp-deps-1.6.0/libs/apr-util | ||
RUN CFLAGS="-fPIC" ./configure \ | ||
--prefix=/usr/local/apr \ | ||
--with-apr=/usr/local/apr \ | ||
--with-expat=/usr \ | ||
&& make install | ||
|
||
WORKDIR /root | ||
RUN git clone https://github.com/unispeech/unimrcp.git | ||
|
||
WORKDIR /root/unimrcp | ||
RUN ./bootstrap \ | ||
&& ./configure \ | ||
--with-sofia-sip=/usr \ | ||
&& make install | ||
COPY . ${DATA_DIR} | ||
WORKDIR ${DATA_DIR} | ||
|
||
ENV UNIMRCP_CFLAGS="-I/usr/local/unimrcp/include -I/usr/local/apr/include/apr-1/" | ||
ENV UNIMRCP_LIBS="/usr/local/unimrcp/lib/libunimrcpclient.a /usr/local/apr/lib/libaprutil-1.a /usr/local/apr/lib/libapr-1.a -lexpat -lsofia-sip-ua -luuid -lcrypt -lpthread -lm" | ||
|
||
#RUN ./bootstrap.sh \ | ||
# && ./configure \ | ||
# && make install | ||
|
||
RUN . ~/.env \ | ||
&& dch \ | ||
--controlmaint \ | ||
--distribution "${CODENAME}" \ | ||
--force-bad-version \ | ||
--force-distribution \ | ||
--newversion "${BUILD_NUMBER}-${GIT_SHA}~${CODENAME}" \ | ||
--package "freeswitch-mod-unimrcp" \ | ||
"Build, ${GIT_SHA}" \ | ||
&& debuild \ | ||
--preserve-env \ | ||
--no-tgz-check \ | ||
--build=binary \ | ||
--unsigned-source \ | ||
--unsigned-changes \ | ||
&& mkdir OUT \ | ||
&& mv -v ../*.{deb,changes} OUT/. | ||
|
||
# Artifacts image (mandatory part, the resulting image must have a single filesystem layer) | ||
FROM scratch | ||
COPY --from=builder /data/OUT/ / |
Oops, something went wrong.