This is an automated email from the ASF dual-hosted git repository.
stack pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-operator-tools.git
The following commit(s) were added to refs/heads/master by this push:
new aa102dd HBASE-22674 precommit docker image installs JRE over JDK (#7)
aa102dd is described below
commit aa102dd5ba3c6fbd5a2a6353c3dc90bbe3c5eb41
Author: Sean Busbey <[email protected]>
AuthorDate: Fri Jul 12 00:24:07 2019 -0500
HBASE-22674 precommit docker image installs JRE over JDK (#7)
* remove findbugs because it pulls in a JRE
* remove bats because we don't use it.
---
dev-support/Dockerfile | 4 ----
1 file changed, 4 deletions(-)
diff --git a/dev-support/Dockerfile b/dev-support/Dockerfile
index b62e63d..c87b905 100644
--- a/dev-support/Dockerfile
+++ b/dev-support/Dockerfile
@@ -22,16 +22,12 @@ FROM maven:3.6-jdk-8
# hadolint ignore=DL3008
RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
git \
- bats \
- findbugs \
rsync \
shellcheck \
wget && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
-ENV FINDBUGS_HOME /usr
-
###
# Avoid out of memory errors in builds
###