This file contains hidden or 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
FROM centos:6 | |
LABEL maintainer="bzohdy" | |
RUN yum -y update && yum -y install ksh | |
ADD https://downloads.sourceforge.net/project/gull/seagull/1.8.2/seagull-1.8.2-Linux_RHEL6U1_X86_64.tar.gz /tmp/ | |
WORKDIR /tmp | |
RUN tar xvf seagull-1.8.2-Linux_RHEL6U1_X86_64.tar.gz | |
WORKDIR /tmp/packages | |
RUN rpm -ivh seagull-core-1.8.2-linux-2.6-intel.rpm && \ | |
rpm -ivh seagull-diameter-protocol-1.8.2-linux-2.6-intel.rpm | |
WORKDIR /opt/seagull |
OlderNewer