Skip to content

Commit

Permalink
Enable verbose logging to npm installs
Browse files Browse the repository at this point in the history
  • Loading branch information
felddy committed Sep 26, 2023
1 parent 5712852 commit 0f5c543
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ COPY \
package-lock.json \
tsconfig.json \
./
RUN npm install && npm install --global typescript
RUN \
npm install --loglevel verbose && \
npm install --loglevel verbose --global typescript
COPY /src/*.ts src/
RUN tsc
RUN grep -l "#!" dist/*.js | xargs chmod a+x
Expand Down

0 comments on commit 0f5c543

Please sign in to comment.