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, only the pom.xml of `flink-kubernetes-docs`is copied into Dockerfile, which is introduced as module in pom.xml of parent and need to copy. -- 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]
