Dockerfile 290 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
FROM tomcat:8.5-jre8

RUN apt-get update -y 
RUN apt-get install -y wait-for-it

COPY wso2.crt ./home/

RUN keytool -import -trustcacerts -noprompt -file ./home/wso2.crt -alias wso2 -keystore /usr/local/openjdk-8/lib/security/cacerts -storepass changeit

CMD ["catalina.sh", "jpda", "run"]