From aaae1301b4a47063855302f1af2448622de191fb Mon Sep 17 00:00:00 2001 From: haberda <25726974+haberda@users.noreply.github.com> Date: Sat, 13 Mar 2021 09:33:15 -0800 Subject: [PATCH] Update Dockerfile Without the *.tar the tar file is not deleted. This change saves about 20mb of space. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7b11821b..c14abb8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -150,7 +150,7 @@ COPY --from=buildcontainer /tmp/signal-cli-${SIGNAL_CLI_VERSION}/build/native-im COPY entrypoint.sh /entrypoint.sh RUN tar xf /tmp/signal-cli-${SIGNAL_CLI_VERSION}.tar -C /opt -RUN rm -rf /tmp/signal-cli-${SIGNAL_CLI_VERSION} +RUN rm -rf /tmp/signal-cli-${SIGNAL_CLI_VERSION}.tar RUN groupadd -g 1000 signal-api \ && useradd --no-log-init -M -d /home -s /bin/bash -u 1000 -g 1000 signal-api \