Display NPM_TOKEN during Docker build

This commit is contained in:
🏔️ Peak
2025-09-15 17:44:19 +02:00
committed by GitHub
parent 9fd350ef5a
commit 19230ad1c1

View File

@@ -1,7 +1,7 @@
FROM oven/bun
WORKDIR /app
COPY . /app
ENV TEST=$TEST
RUN env
RUN echo "Build-time NPM_TOKEN is: $NPM_TOKEN"
RUN bun install
CMD bun start