From fc7043faa572baccfbb3067ee4c12a67b4e0fadf Mon Sep 17 00:00:00 2001 From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Wed, 4 Sep 2024 13:40:08 +0200 Subject: [PATCH] =?utf8?q?chore:=20=F0=9F=A4=96=20cleanup=20dist=20folder?= =?utf8?q?=20after=20image=20is=20built=20(#1649)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 82757cdb..c9352afe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,6 @@ FROM ghcr.io/music-assistant/base:$BASE_IMAGE_VERSION ARG MASS_VERSION ARG TARGETPLATFORM ADD dist dist -RUN ls -al dist - # Install Music Assistant from prebuilt wheel RUN uv pip install \ --system \ @@ -35,6 +33,8 @@ LABEL \ io.hass.platform="${TARGETPLATFORM}" \ io.hass.type="addon" +RUN rm -rf dist + VOLUME [ "/data" ] EXPOSE 8095 -- 2.34.1