Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
ログレベル変更
Browse files Browse the repository at this point in the history
  • Loading branch information
massongit committed Nov 4, 2022
1 parent d44aa96 commit f7719d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:16.18.0-bullseye-slim AS base
RUN apt-get update \
# hadolint ignore=DL3008
&& apt-get install -y --no-install-recommends curl \
&& npm install --loglevel verbose --location=global [email protected] \
&& npm install --loglevel silly --location=global [email protected] \
&& find / -type f -perm /u+s -ignore_readdir_race -exec chmod u-s {} \; \
&& find / -type f -perm /g+s -ignore_readdir_race -exec chmod g-s {} \; \
&& rm -rf /root/.npm /tmp /var/lib/apt/lists
Expand All @@ -30,7 +30,7 @@ COPY .node-version .
COPY .npmignore .
COPY .npmrc .
COPY package*.json .
RUN npm ci --loglevel verbose \
RUN npm ci --loglevel silly \
&& rm -rf /home/node/.npm
COPY tsconfig.json .
COPY lib/props/ lib/props/
Expand Down

0 comments on commit f7719d9

Please sign in to comment.