mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 18:08:06 +00:00
17 lines
590 B
Docker
17 lines
590 B
Docker
FROM centos/httpd-24-centos7
|
|
MAINTAINER Jehan Monnier <jehan.monnier@linphone.org>
|
|
|
|
USER root
|
|
|
|
# Install dependencies
|
|
RUN yum -y install epel-release
|
|
COPY rpmbuild/x86_64/bc-flexisip-account-manager-*.rpm /
|
|
# Install lime-server
|
|
RUN yum -y localinstall /bc-flexisip-account-manager-*.rpm
|
|
#bc-flexisip-account-manager
|
|
|
|
# Apache configuration
|
|
# account manager is reachable on port 8082
|
|
#RUN sed -i 's/8080/8082/g' /opt/rh/httpd24/root/etc/httpd/conf/httpd.conf
|
|
# do not mess with ssl server from other containers
|
|
#RUN sed -i 's/8443/9443/g' /opt/rh/httpd24/root/etc/httpd/conf.d/ssl.conf
|