Remove /var/cache/apk from container image after installation.

This commit is contained in:
Fabio Manganiello 2023-08-20 14:19:04 +02:00
parent a6752ed034
commit a28dcb7a8d
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 1 additions and 0 deletions

View File

@ -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