From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:40:08 +0000 (+0200) Subject: chore: 🤖 cleanup dist folder after image is built (#1649) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=fc7043faa572baccfbb3067ee4c12a67b4e0fadf;p=music-assistant-server.git chore: 🤖 cleanup dist folder after image is built (#1649) --- 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