SteNicholas commented on code in PR #178: URL: https://github.com/apache/flink-kubernetes-operator/pull/178#discussion_r856126535
########## Dockerfile: ########## @@ -23,21 +23,23 @@ WORKDIR /app ENV SHADED_DIR=flink-kubernetes-shaded ENV OPERATOR_DIR=flink-kubernetes-operator ENV WEBHOOK_DIR=flink-kubernetes-webhook +ENV DOCS_DIR=flink-kubernetes-docs RUN mkdir $OPERATOR_DIR $WEBHOOK_DIR COPY pom.xml . COPY $SHADED_DIR/pom.xml ./$SHADED_DIR/ COPY $WEBHOOK_DIR/pom.xml ./$WEBHOOK_DIR/ COPY $OPERATOR_DIR/pom.xml ./$OPERATOR_DIR/ +COPY $DOCS_DIR/pom.xml ./$DOCS_DIR/ Review Comment: @wangyang0918, this only adds the pom.xml of the `flink-kubernetes-docs`, which is used in parent pom.xml. I have tried not to copy this file but the maven command throwed the module not existing. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
