mirror of https://github.com/grpc/grpc-java.git
15 lines
371 B
Docker
15 lines
371 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
|
apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
g++-aarch64-linux-gnu \
|
|
g++-powerpc64le-linux-gnu \
|
|
openjdk-8-jdk \
|
|
&& \
|
|
rm -rf /var/lib/apt/lists/*
|