# Container Name:: nodejs-dumb-init
# Copyright (c) 2019 Twitch, All Rights Reserved.
#
# Best practices and documentation can be found here:
# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
# https://docs.docker.com/engine/reference/builder/

FROM ecr.clients.internal.justin.tv/nodejs:14.15.0-1

ONBUILD RUN apk upgrade --no-cache -U && \
            update-ca-certificates

RUN apk add --no-cache -U dumb-init

ENTRYPOINT [ "/usr/bin/dumb-init" ]
