1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

build: Suppress npm update notifier

This commit is contained in:
Maksim Eltyshev 2025-05-10 21:55:03 +02:00
parent dd8cd2f4fd
commit 9b32249e9f

View file

@ -34,7 +34,8 @@ COPY --chown=node:node server .
RUN python3 -m venv .venv \ RUN python3 -m venv .venv \
&& .venv/bin/pip3 install -r requirements.txt --no-cache-dir \ && .venv/bin/pip3 install -r requirements.txt --no-cache-dir \
&& mv .env.sample .env && mv .env.sample .env \
&& npm config set update-notifier false
COPY --from=server-dependencies --chown=node:node /app/node_modules node_modules COPY --from=server-dependencies --chown=node:node /app/node_modules node_modules