From 1e1cb8fe578e1649b032b00115ed83765ce16a0d Mon Sep 17 00:00:00 2001 From: taylor Date: Sat, 19 Oct 2019 14:34:30 +1100 Subject: [PATCH] Make the gotenberg user owner of /tini binary to fix running image in cloud environments --- build/package/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/package/Dockerfile b/build/package/Dockerfile index a64bc6c0..8758787f 100644 --- a/build/package/Dockerfile +++ b/build/package/Dockerfile @@ -42,7 +42,7 @@ LABEL authors="Julien Neuhart " ARG TINI_VERSION -ADD https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini /tini +ADD --chown=gotenberg https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini /tini RUN chmod +x /tini ENTRYPOINT [ "/tini", "--" ]