From e58dc2c77ccfede4c0b53dd16a309657e5227c71 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Wed, 16 May 2018 20:35:04 +0800 Subject: [PATCH] Fix COPY in Dockerfile (#64) * fix COPY in docker fiile --- modules/openapi-generator-online/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openapi-generator-online/Dockerfile b/modules/openapi-generator-online/Dockerfile index 4740683ef84..e0203bd5805 100644 --- a/modules/openapi-generator-online/Dockerfile +++ b/modules/openapi-generator-online/Dockerfile @@ -2,7 +2,7 @@ FROM openjdk:8-jre-alpine WORKDIR /generator -COPY target/*.jar /generator/openapi-generator-online.jar +COPY target/openapi-generator-online-3.0.0-SNAPSHOT.jar /generator/openapi-generator-online.jar ENV GENERATOR_HOST=http://localhost