kie-platform/drools-framework-business-proxy-parent/drools-framework-business-indexer-app/src/main/docker/Dockerfile

12 lines
295 B
Text
Raw Normal View History

FROM openjdk:8-jre-slim
ADD application.properties /application.properties
ADD maven/drools-framework-business-indexer-app-1.0-SNAPSHOT.jar app.jar
RUN bash -c 'touch /app.jar'
ENTRYPOINT ["java","-Dspring.config.location=file:./","-jar","/app.jar"]
#ENTRYPOINT ["java","-jar","/app.jar"]