# Container Name:: alpine-dumb-init
# Copyright (c) 2019 Twitch, All Rights Reserved.

FROM ecr.clients.internal.justin.tv/alpine:3.9.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" ]

