This repository has been archived by the owner on Apr 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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/ | ||
|