Skip to content

Instantly share code, notes, and snippets.

@nbouherrou
Last active March 11, 2016 14:19
Show Gist options
  • Save nbouherrou/e9109c1cd7ae9028d1c0 to your computer and use it in GitHub Desktop.
Save nbouherrou/e9109c1cd7ae9028d1c0 to your computer and use it in GitHub Desktop.
FROM centos:centos6
MAINTAINER Nacer Bouherrou <nacer.bouherrou@ido-in.com>
RUN yum install nc
ADD /root/install.sh /root
ADD /root/install_LDB.sh /root
ADD /root/mirth_ideoconnect-3.2.2-I.0.tar.gz /root
ADD /root/ideosanteMirthPlugin-4.2.1.tar.gz /root
RUN chmod +x ./install.sh
RUN ./install.sh mirth_ideoconnect-3.2.2-I.0.tar.gz ideosanteMirthPlugin-4.2.1.tar.gz
RUN chmod +x ./install_LDB.sh
RUN ./install_LDB.sh mirth_ideoconnect-3.2.2-I.0.tar.gz ideosanteMirthPlugin-4.2.1.tar.gz
RUN chkconfig iptables off
RUN service iptables stop
RUN service mirth_ideoconnect start
EXPOSE 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment