aboutsummaryrefslogtreecommitdiffstats
path: root/webseal-simulator/Dockerfile
blob: 9d01611dc9322c72a97b4dfcca7c78e89d0b1005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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" ]