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

fix jenkins debian10 #3570

Merged
merged 4 commits into from
Jul 18, 2020
Merged
Changes from 3 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
12 changes: 6 additions & 6 deletions docker/compile/Dockerfile.debian10
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM openjdk:11.0.6-slim-buster
FROM openjdk:11.0.6-jdk-buster

# This is passed to the heron build command via the --config flag
ENV TARGET_PLATFORM debian
Expand All @@ -27,21 +27,21 @@ RUN apt-get update && apt-get -y install \
build-essential \
cmake \
curl \
libssl-dev \
git \
libcppunit-dev \
libssl-dev \
libtool \
libtool-bin \
libcppunit-dev \
pkg-config \
python \
python3 \
python3-dev \
software-properties-common \
python3-setuptools \
software-properties-common \
tree \
zip \
unzip \
wget
wget \
zip

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down