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

Commit

Permalink
Added package security updates
Browse files Browse the repository at this point in the history
  • Loading branch information
snelson-pp authored and johngmyers committed Apr 5, 2019
1 parent 2221dd9 commit 9aa6351
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion zulu-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ FROM gcc:8.2.0 as dumb-init-builder
RUN git clone -b v1.2.1 --depth 1 --single-branch https://github.com/proofpoint/dumb-init.git
RUN cd dumb-init && make

FROM docker.io/azul/zulu-openjdk-debian:8u192
FROM docker.io/azul/zulu-openjdk-debian:8u202

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install --assume-yes \
# These packages are security updates
base-files=9.9+deb9u8 \
libc6=2.24-11+deb9u4 \
libc-bin=2.24-11+deb9u4 \
libsystemd0=232-25+deb9u9 \
multiarch-support=2.24-11+deb9u4 \
gpgv=2.1.18-8~deb9u4 \
libudev1=232-25+deb9u9 \
tzdata=2019a-0+deb9u1 \
gnupg-l10n=2.1.18-8~deb9u4 \
dirmngr=2.1.18-8~deb9u4 \
gnupg=2.1.18-8~deb9u4 \
gnupg-agent=2.1.18-8~deb9u4

COPY --from=dumb-init-builder /dumb-init/dumb-init /usr/local/bin/dumb-init
ENTRYPOINT ["/usr/local/bin/dumb-init"]

0 comments on commit 9aa6351

Please sign in to comment.