uncomment es docker creation 41/1541/1
authorMichael Lando <ml636r@att.com>
Wed, 1 Mar 2017 08:05:34 +0000 (10:05 +0200)
committerMichael Lando <ml636r@att.com>
Wed, 1 Mar 2017 08:05:34 +0000 (10:05 +0200)
Change-Id: Ia49373d07564e32c7db4bcea24abe7a4d317734c
Signed-off-by: Michael Lando <ml636r@att.com>
sdc-os-chef/pom.xml
webseal-simulator/Dockerfile [new file with mode: 0644]

index 36bc3c1..150b52f 100644 (file)
                                                                </image>
 
                                                                <!-- Build elastic search image -->
-                                                               <!--<image>
+                                                               <image>
                                                                        <name>openecomp/sdc-elasticsearch:%l</name>
                                                                        <alias>sdc-elasticsearch</alias>
                                                                        <build>
                                                                                <cleanup>try</cleanup>
                                                                                <dockerFileDir>${project.basedir}/sdc-elasticsearch</dockerFileDir>
                                                                        </build>
-                                                               </image>-->
+                                                               </image>
 
                                                                <!-- Build kibana image -->
                                                                <image>
diff --git a/webseal-simulator/Dockerfile b/webseal-simulator/Dockerfile
new file mode 100644 (file)
index 0000000..9d01611
--- /dev/null
@@ -0,0 +1,20 @@
+FROM jetty:9.3.15-jre8
+
+RUN apt-get -y update
+RUN apt-get -y install apt-utils
+RUN apt-get -y install curl
+RUN apt-get -y install vim
+
+
+
+
+
+ADD ./../target/WSSimulator.war      ${JETTY_BASE}/webapps/
+RUN chown -R jetty:jetty               ${JETTY_BASE}/webapps
+ADD ./
+
+COPY startup.sh /root/
+
+RUN chmod 770 /root/startup.sh
+
+ENTRYPOINT [ "/root/startup.sh" ]