From 1fd9439fc732240f25e1e8ac49ba4976675932f0 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 31 Jan 2026 20:43:27 +0100 Subject: [PATCH] Update npm build command in Dockerfile Remove base path from npm build command in Dockerfile. --- birdnet-pipy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdnet-pipy/Dockerfile b/birdnet-pipy/Dockerfile index ec321925b..71fd6e47f 100644 --- a/birdnet-pipy/Dockerfile +++ b/birdnet-pipy/Dockerfile @@ -27,7 +27,7 @@ RUN mkdir -p /src \ WORKDIR /src/frontend RUN npm ci --prefer-offline -RUN npm run build -- --base=/birdnet/ +RUN npm run build FROM ${BUILD_FROM}