Update npm build command in Dockerfile

Remove base path from npm build command in Dockerfile.
This commit is contained in:
Alexandre
2026-01-31 20:43:27 +01:00
committed by GitHub
parent 59e2cccd72
commit 1fd9439fc7

View File

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