From 2544ace26213d80b1b2865bfb16ec8df528c1b65 Mon Sep 17 00:00:00 2001 From: Jim Schubert Date: Tue, 28 Aug 2018 18:08:51 -0400 Subject: [PATCH] [docker] Fixes hub dockerfile for online project (#914) An update was made in #876 to remove version from the generated artifact for openapi-generator-online. The change is missing the -online suffix. My original glob pattern put the * in the wrong place for maintainability. --- .hub.online.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hub.online.dockerfile b/.hub.online.dockerfile index 48c04f5a568..083b84d4ead 100644 --- a/.hub.online.dockerfile +++ b/.hub.online.dockerfile @@ -26,7 +26,7 @@ RUN mkdir -p ${TARGET_DIR} WORKDIR ${TARGET_DIR} -COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator.jar ${TARGET_DIR}/openapi-generator-online.jar +COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator-online.jar ${TARGET_DIR}/openapi-generator-online.jar ENV GENERATOR_HOST=http://localhost