Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 7bfa0c7

Browse files
authored
Fix debian9 docker file and clean up centos8 and ubuntu18.04 (#3518)
1 parent ec7a87a commit 7bfa0c7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docker/base/Dockerfile.base.debian9

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
FROM openjdk:8-jdk-slim
18+
FROM openjdk:11-jdk-slim-stretch
1919

2020
RUN apt-get -y update && apt-get -y install \
2121
netcat-openbsd \

docker/test/Dockerfile.centos7

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM centos:centos7
1919

2020
# This is passed to the heron build command via the --config flag
2121
ENV TARGET_PLATFORM centos
22-
ENV bazelVersion 0.26.0
22+
ENV bazelVersion 3.0.0
2323

2424
RUN yum -y upgrade
2525
RUN yum -y install \
@@ -33,6 +33,7 @@ RUN yum -y install \
3333
git \
3434
kernel-devel \
3535
libtool \
36+
cppunit-devel \
3637
make \
3738
patch \
3839
python-devel \

docker/test/Dockerfile.ubuntu18.04

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ FROM ubuntu:18.04
1919

2020
# This is passed to the heron build command via the --config flag
2121
ENV TARGET_PLATFORM ubuntu
22-
ENV bazelVersion 0.26.0
22+
ENV bazelVersion 3.0.0
2323

2424
RUN apt-get update && apt-get -y install \
2525
g++ \
2626
cmake \
2727
automake \
2828
libtool-bin \
2929
libunwind8 \
30+
libcppunit-dev \
3031
patch \
3132
python-dev \
3233
python3-dev \

0 commit comments

Comments
 (0)