Merge pull request #722 from aledbf/remove-go-reaper

Remove go-reap and use tini as process reaper
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-05-17 07:37:23 -04:00 committed by GitHub
commit b4032f0648
4 changed files with 8 additions and 13 deletions

View file

@ -19,6 +19,11 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN curl -sSL -o /sbin/tini https://github.com/krallin/tini/releases/download/v0.14.0/tini-amd64 && \
chmod +x /sbin/tini
ENTRYPOINT ["/sbin/tini", "--"]
COPY . /
CMD ["/nginx-ingress-controller"]