mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Add initial support to build Docker images
This work-in-progress is the first step to being able to reliably build Asterisk containers from the Asterisk source. I'm submitting this based on feedback gained at AstriDevCon 2015. Information about how to use this is provided in contrib/docker/README.md and will result in a local Asterisk container being built right from your source. I believe this can eventually be automated via hub.docker.com. Change-Id: Ifa070706d40e56755797097b6ed72c1e243bd0d1
This commit is contained in:
committed by
Matthew Fredrickson
parent
7ea1e181dc
commit
0da36fca6b
9
contrib/docker/Dockerfile.packager
Normal file
9
contrib/docker/Dockerfile.packager
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM alanfranz/fwd-centos-7:latest
|
||||
MAINTAINER Leif Madsen <leif@leifmadsen.com>
|
||||
ENV REFRESHED_AT 2016-02-25
|
||||
ADD contrib/scripts/install_prereq /tmp/install_prereq
|
||||
RUN yum clean metadata && \
|
||||
yum -y update && \
|
||||
yum install epel-release -y && \
|
||||
yum clean all &&\
|
||||
/tmp/install_prereq install
|
Reference in New Issue
Block a user