Skip to content

Commit

Permalink
Fix random failed to install npm package from git in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
ZIMkaRU committed Feb 22, 2024
1 parent 1c4e0bc commit 31d835b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile.linux-builder
Expand Up @@ -14,6 +14,7 @@ RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION} \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN chown root:root .

COPY . .

Expand Down
1 change: 1 addition & 0 deletions Dockerfile.mac-builder
Expand Up @@ -14,6 +14,7 @@ RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION} \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN chown root:root .

COPY . .

Expand Down
1 change: 1 addition & 0 deletions Dockerfile.ui-builder
Expand Up @@ -8,6 +8,7 @@ ENV IS_DEV_ENV=${IS_DEV_ENV:-0}
COPY ./scripts/helpers/install-nodejs.sh ./scripts/helpers/install-nodejs.sh

RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION}
RUN chown root:root .

COPY . .

Expand Down
1 change: 1 addition & 0 deletions Dockerfile.win-builder
Expand Up @@ -17,6 +17,7 @@ RUN ./scripts/helpers/install-nodejs.sh ${NODE_VERSION} \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN chown root:root .

COPY . .

Expand Down

0 comments on commit 31d835b

Please sign in to comment.