File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
if [ -n " $NPM_AUTH_TOKEN " ]; then
6
6
# Respect NPM_CONFIG_USERCONFIG if it is provided, default to $HOME/.npmrc
7
7
NPM_CONFIG_USERCONFIG=" ${NPM_CONFIG_USERCONFIG-" $HOME /.npmrc" } "
8
- NPM_REGISTRY_URL=" ${NPM_REGISTRY_URL-registry.npmjs.org} "
8
+ NPM_REGISTRY_URL=" ${NPM_REGISTRY_URL-https :// registry.npmjs.org} "
9
9
10
10
# Allow registry.npmjs.org to be overridden with an environment variable
11
11
printf " //%s/:_authToken=%s\\ nregistry=%s" " $NPM_REGISTRY_URL " " $NPM_AUTH_TOKEN " " $NPM_REGISTRY_URL " > " $NPM_CONFIG_USERCONFIG "
@@ -31,7 +31,7 @@ echo "**************** Copying assets files to build directory ****************"
31
31
cp -R ../build/ .
32
32
33
33
echo " **************** Installing ****************"
34
- npm install
34
+ npm install --legacy-peer-deps
35
35
36
36
echo " **************** Building ****************"
37
37
npm run build
Original file line number Diff line number Diff line change 1
- FROM ruby:2.6 .0
1
+ FROM ruby:3 .0
2
2
3
3
RUN apt-get update && \
4
4
apt-get install --no-install-recommends -y \
You can’t perform that action at this time.
0 commit comments