File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
exist-docker/src/main/resources-filtered Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 22
22
23
23
# Install latest JRE 8 in Debian Stretch (which is the base of gcr.io/distroless/java:8)
24
24
FROM debian:stretch-slim as updated-jre
25
+ RUN echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list
26
+ RUN echo "deb http://archive.debian.org/debian stretch-backports main" >> /etc/apt/sources.list
25
27
RUN apt-get update && apt-get -y dist-upgrade
26
28
RUN apt-get install -y openjdk-8-jre-headless
27
29
RUN apt-get install -y expat fontconfig # Install tools required by FOP
Original file line number Diff line number Diff line change 22
22
23
23
# Use JDK 8 in Debian Stretch (as our production image gcr.io/distroless/java:8 is based on Debian Stretch with just a JRE)
24
24
FROM debian:stretch-slim
25
+ RUN echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list
26
+ RUN echo "deb http://archive.debian.org/debian stretch-backports main" >> /etc/apt/sources.list
25
27
RUN apt-get update && apt-get -y dist-upgrade
26
28
RUN apt-get install -y openjdk-8-jdk-headless
27
29
RUN apt-get install -y expat fontconfig # Install tools required by FOP
You can’t perform that action at this time.
0 commit comments