mirror of
https://github.com/google/nomulus.git
synced 2025-04-29 11:37:51 +02:00
* Build docker image of nomulus tool In the course of "gradle build", build a docker image of nomulus tool so that users can run this to allow us to bundle the java version with the image.
3 lines
127 B
Docker
3 lines
127 B
Docker
FROM gcr.io/distroless/java:debug
|
|
ADD build/libs/nomulus.jar /nomulus.jar
|
|
ENTRYPOINT ["/usr/bin/java", "-jar", "/nomulus.jar"]
|