Created
October 23, 2017 03:38
-
-
Save bassemZohdy/66c09bc78f344948a53260cdc07cf66e to your computer and use it in GitHub Desktop.
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
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 | |
CMD /bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment