From a28dcb7a8d33b4ace028fcad4acd3786c529d66d Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 20 Aug 2023 14:19:04 +0200 Subject: [PATCH] Remove /var/cache/apk from container image after installation. --- platypush/install/docker/alpine.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/platypush/install/docker/alpine.Dockerfile b/platypush/install/docker/alpine.Dockerfile index e1e6016b..5092f782 100644 --- a/platypush/install/docker/alpine.Dockerfile +++ b/platypush/install/docker/alpine.Dockerfile @@ -10,6 +10,7 @@ RUN apk update RUN /install/platypush/install/scripts/alpine/install.sh RUN cd /install && pip install -U --no-input --no-cache-dir . RUN rm -rf /install +RUN rm -rf /var/cache/apk EXPOSE 8008