Merge "Update INFO.yaml file"
[integration.git] / test / mocks / sniroemulator / src / main / docker / Dockerfile
1 FROM openjdk:8-jre-alpine
2
3 MAINTAINER Geora Barsky <georab@amdocs.com>
4
5 # need bash as most scripts expect it
6 RUN apk --no-cache add bash
7
8 RUN mkdir -p /var/wiremock/lib/ 
9
10 COPY sniroemulator.jar /var/wiremock/lib/app.jar
11
12 WORKDIR /home/wiremock
13
14 COPY docker-entrypoint.sh /
15 RUN chmod 700 /docker-entrypoint.sh
16
17 VOLUME /home/wiremock
18 EXPOSE 8080 8081 9999
19
20 ENTRYPOINT ["/docker-entrypoint.sh"]
21
22 CMD ["java", "-jar","/var/wiremock/lib/app.jar"]