mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 18:08:06 +00:00
Fix the packaging process to use git describe as a reference Move the generated packages in the build directory, and fix the release and version format in the .spec Refactor and cleanup the .gitlab-ci file Move minimum version to PHP8.0
14 lines
No EOL
638 B
Docker
14 lines
No EOL
638 B
Docker
FROM gitlab.linphone.org:4567/bc/public/linphone-sdk/bc-dev-debian11:2022_10_13_update_docker_image
|
|
MAINTAINER Peio Rigaux <peio.rigaux@belledonne-communications.com>
|
|
USER root
|
|
|
|
# Install Sury repository
|
|
RUN curl -sSL https://packages.sury.org/php/README.txt | sudo bash -x
|
|
|
|
# Install dependencies
|
|
RUN apt update && apt -y install php php-xml php-curl composer rsync
|
|
|
|
# Setup the Debian repository
|
|
RUN apt install wget
|
|
RUN wget https://linphone.org/snapshots/debian/keyring.gpg -O - | sudo apt-key add -
|
|
RUN echo 'deb [arch=amd64] http://linphone.org/snapshots/debian '$(lsb_release -cs)' stable' > /etc/apt/sources.list.d/belledonne.list |