Skip to content

Commit

Permalink
[docker] Fixes hub dockerfile for online project (#914)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jimschubert authored Aug 28, 2018
1 parent a1205f6 commit 2544ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .hub.online.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2544ace

Please sign in to comment.