Skip to content

Commit f16ab8d

Browse files
authored
[docker] Fixes hub dockerfile for online project (OpenAPITools#914)
An update was made in OpenAPITools#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.
1 parent 5bbde6a commit f16ab8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.hub.online.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN mkdir -p ${TARGET_DIR}
2626

2727
WORKDIR ${TARGET_DIR}
2828

29-
COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator.jar ${TARGET_DIR}/openapi-generator-online.jar
29+
COPY --from=builder ${GEN_DIR}/modules/openapi-generator-online/target/openapi-generator-online.jar ${TARGET_DIR}/openapi-generator-online.jar
3030

3131
ENV GENERATOR_HOST=http://localhost
3232

0 commit comments

Comments
 (0)