This repository was archived by the owner on Mar 3, 2023. It is now read-only.
File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ FROM ubuntu:16.04
21
21
ENV TARGET_PLATFORM ubuntu
22
22
ENV bazelVersion 3.0.0
23
23
24
+ RUN apt-get update && apt-get install -y software-properties-common
25
+
26
+ RUN add-apt-repository ppa:openjdk-r/ppa
27
+
24
28
RUN apt-get update && apt-get -y install \
25
29
automake \
26
30
build-essential \
@@ -31,12 +35,15 @@ RUN apt-get update && apt-get -y install \
31
35
libtool-bin \
32
36
libunwind8 \
33
37
libunwind-setjmp0-dev \
38
+ pkg-config \
34
39
python-dev \
35
40
libcppunit-dev \
36
41
tree \
37
42
zip \
38
43
unzip \
39
- wget \
44
+ wget
45
+
46
+ RUN apt-get update && apt-get -y install \
40
47
openjdk-11-jdk-headless
41
48
42
49
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
Original file line number Diff line number Diff line change 17
17
18
18
FROM ubuntu:16.04
19
19
20
- RUN apt-get update
20
+ RUN apt-get update && apt-get install -y software-properties-common
21
+
22
+ RUN add-apt-repository ppa:openjdk-r/ppa
21
23
22
24
RUN apt-get -y install \
23
25
python \
24
26
python3 \
25
27
unzip \
26
28
software-properties-common \
27
29
curl \
28
- supervisor \
30
+ supervisor
31
+
32
+ RUN apt-get update && apt-get -y install \
29
33
openjdk-11-jdk-headless
30
34
31
35
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
You can’t perform that action at this time.
0 commit comments