File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,14 @@ USER root
19
19
20
20
# Install all OS dependencies for notebook server that starts but lacks all
21
21
# features (e.g., download as all possible file formats)
22
- # Install tini: init for containers
22
+ # - tini is installed as a helpful container entrypoint that reaps zombie
23
+ # processes and such of the actual executable we want to start, see
24
+ # https://github.com/krallin/tini#why-tini for details.
25
+ # - apt-get upgrade is run to patch known vulnerabilities in apt-get packages as
26
+ # the ubuntu base image is rebuilt too seldom sometimes (less than once a month)
23
27
ENV DEBIAN_FRONTEND noninteractive
24
28
RUN apt-get update --yes && \
29
+ apt-get upgrade --yes && \
25
30
apt-get install --yes --no-install-recommends \
26
31
tini \
27
32
wget \
You can’t perform that action at this time.
0 commit comments