1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2026-03-15 08:13:16 +08:00

Enhance Dockerfile with npm logging and version checks

Added verbose logging for npm installation and node version check.
This commit is contained in:
涵曦
2025-12-26 00:24:12 +08:00
committed by GitHub
parent f2bb13da11
commit a8ea6671f7

View File

@@ -9,7 +9,10 @@ WORKDIR /app
COPY pyproject.toml README.md package.json ./
RUN pdm install --prod --no-editable -v
RUN npm install
RUN node -v && npm -v
RUN uname -m
RUN npm config list
RUN npm install --verbose
COPY xiaomusic/ ./xiaomusic/
COPY plugins/ ./plugins/