FROM eclipse-temurin:21-alpine
ENV IIP_PORT=9001
COPY svcJars/* /svcJars/
COPY serviceMgr.sh /
COPY SimpleMeshTestingApp/target/SimpleMeshTestingApp-0.1.0-SNAPSHOT-bin.jar /apps/
RUN ["chmod", "+x", "/serviceMgr.sh"]
CMD /serviceMgr.sh --iip.port=$IIP_PORT
