From 61bea7c3895579c1359133e45b5caa16a3b9f253 Mon Sep 17 00:00:00 2001 From: plaza-s Date: Wed, 28 Nov 2018 15:58:35 +0100 Subject: [PATCH] docs(dockerfile): add comments for apk commands --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 92310d3d..9682a10a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM node:8-alpine -# Tini for Handling Kernel Signals -# https://github.com/krallin/tini -# https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md#handling-kernel-signals +# - Upgrade alpine packages to avoid possible os vulnerabilities +# - Tini for Handling Kernel Signals https://github.com/krallin/tini +# https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md#handling-kernel-signals RUN apk --no-cache upgrade && apk add --no-cache tini WORKDIR /opt/arena