-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (20 loc) · 762 Bytes
/
Dockerfile
File metadata and controls
25 lines (20 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# https://index.docker.io/_/centos/
FROM centos:7
# https://github.com/vpalacio
MAINTAINER Victor Palacio <vpalacio@gmail.com>
ENV PACKAGE InterMapper-5.8.2-1.x86_64.5x.rpm
# Install InterMapper and its dependencies.
RUN yum -y update && \
yum -y groupinstall "Compatibility Libraries" && \
yum -y install \
java-1.8.0 \
psmisc \
which \
&& \
curl -o /tmp/${PACKAGE} -L "http://www.helpsystems.com/download/5726/${PACKAGE}/trial?full_name=dsfsd&company_name=sadfsd&bid=34&product_name=InterMapper+for+64-bit+RedHat" && \
yum -y --nogpgcheck localinstall /tmp/${PACKAGE} && \
rm -f /tmp/${PACKAGE} && \
yum clean all
COPY ssl.conf /var/local/InterMapper_Settings/ssl.conf
COPY start.sh /start.sh
CMD /start.sh