You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Includes minimal runtime used for executing non GUI Java programs
10
+
#========================
11
+
RUN apt-get update -qqy \
12
+
&& apt-get -qqy --no-install-recommends install \
13
+
bzip2 \
14
+
ca-certificates \
15
+
openjdk-8-jre-headless \
16
+
sudo \
17
+
unzip \
18
+
wget \
19
+
&& rm -rf /var/lib/apt/lists/* \
20
+
&& sed -i 's/securerandom\.source=file:\/dev\/random/securerandom\.source=file:\/dev\/urandom/' ./usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/java.security
21
+
22
+
# BMP install
23
+
ENV BMP_VERSION 2.1.1
24
+
RUN wget -O browsermob-proxy.zip https://github.com/lightbody/browsermob-proxy/releases/download/browsermob-proxy-$BMP_VERSION/browsermob-proxy-$BMP_VERSION-bin.zip \
25
+
&& unzip -q /browsermob-proxy.zip \
26
+
&& rm -f /browsermob-proxy.zip
27
+
28
+
RUN mv /browsermob-proxy-$BMP_VERSION /browsermob-proxy
0 commit comments