Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-support/jenkins/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Dockerfile for hbase-connectors pre-commit build.
# https://builds.apache.org/job/PreCommit-HBASE-CONNECTORS-Build

FROM maven:3.6-jdk-8
FROM maven:3.8-jdk-8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so changing this fixes the build right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes.


# hadolint ignore=DL3008
RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
Expand All @@ -31,7 +31,7 @@ RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
###
# Avoid out of memory errors in builds
###
ENV MAVEN_OPTS -Xmx3g
ENV MAVEN_OPTS=-Xmx3g
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this change needed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The build showed a warning for legacy formar.

 1 warning found (use docker --debug to expand):
 - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 34)


CMD ["/bin/bash"]

Expand Down