docker-user-cache-miss
41 removals
Words removed | 41 |
Total words | 1173 |
Words removed (%) | 3.50 |
252 lines
41 additions
Words added | 41 |
Total words | 1173 |
Words added (%) | 3.50 |
252 lines
$ docker build -t meteor-deploy-leaderboard . --rm=false
$ docker build -t meteor-deploy-leaderboard . --rm=false
Sending build context to Docker daemon 405.7MB
Sending build context to Docker daemon 405.7MB
Step 1/55 : ARG METEOR_VERSION=1.10.2
Step 1/55 : ARG METEOR_VERSION=1.10.2
Step 2/55 : ARG NODE_VERSION=13.11.0
Step 2/55 : ARG NODE_VERSION=13.11.0
Step 3/55 : ARG NVM_VERSION=0.35.3
Step 3/55 : ARG NVM_VERSION=0.35.3
Step 4/55 : ARG METEOR_PROJECT_PATH=examples/leaderboard
Step 4/55 : ARG METEOR_PROJECT_PATH=examples/leaderboard
Step 5/55 : ARG USERNAME=meteor-deploy
Step 5/55 : ARG USERNAME=meteor-deploy
Step 6/55 : ARG GROUPNAME=$USERNAME
Step 6/55 : ARG GROUPNAME=$USERNAME
Step 7/55 : ARG PULUMI_PROJECT_NAME
Step 7/55 : ARG PULUMI_PROJECT_NAME
Step 8/55 : FROM empiricaly/meteor:$METEOR_VERSION as meteor-with-user
Step 8/55 : FROM empiricaly/meteor:$METEOR_VERSION as meteor-with-user
---> 556cc61f53c0
---> 556cc61f53c0
Step 9/55 : SHELL ["/bin/bash", "-c"]
Step 9/55 : SHELL ["/bin/bash", "-c"]
---> Using cache
---> Using cache
---> df64964431c7
---> df64964431c7
Step 10/55 : ARG GROUPNAME
Step 10/55 : ARG GROUPNAME
---> Using cache
---> Using cache
---> 76afad9043e8
---> 76afad9043e8
Step 11/55 : RUN groupadd "$GROUPNAME"
Step 11/55 : RUN groupadd "$GROUPNAME"
---> Using cache
---> Using cache
---> 961046e23fe8
---> 961046e23fe8
Step 12/55 : ARG USERNAME
Step 12/55 : ARG USERNAME
---> Using cache
---> Using cache
---> 1a9e183b321d
---> 1a9e183b321d
Step 13/55 : ENV HOME "/home/$USERNAME"
Step 13/55 : ENV HOME "/home/$USERNAME"
---> Using cache
---> Using cache
---> d6f9b1a3de8d
---> d6f9b1a3de8d
Step 14/55 : RUN useradd -g "$GROUPNAME" -d "$HOME" -ms /bin/bash "$USERNAME"
Step 14/55 : RUN useradd -g "$GROUPNAME" -d "$HOME" -ms /bin/bash "$USERNAME"
---> Using cache
---> Using cache
---> c5b1919c5f98
---> c5b1919c5f98
Step 15/55 : USER $USERNAME
Step 15/55 : USER $USERNAME
---> Using cache
---> Using cache
---> f7f890f3a052
---> f7f890f3a052
Step 16/55 : WORKDIR $HOME
Step 16/55 : WORKDIR $HOME
---> Using cache
---> Using cache
---> 9b3467aa1c99
---> 9b3467aa1c99
Step 17/55 : ARG METEOR_VERSION
Step 17/55 : ARG METEOR_VERSION
---> Using cache
---> Using cache
---> 80adcd81602b
---> 80adcd81602b
Step 18/55 : RUN meteor --release "$METEOR_VERSION" --version
Step 18/55 : RUN meteor --release "$METEOR_VERSION" --version
---> Using cache
---> Using cache
---> 5645091be0df
---> 5645091be0df
Step 19/55 : FROM meteor-with-user as meteor-nvm
Step 19/55 : FROM meteor-with-user as meteor-nvm
---> 5645091be0df
---> 5645091be0df
Step 20/55 : ENV NVM_DIR "$HOME/.nvm"
Step 20/55 : ENV NVM_DIR "$HOME/.nvm"
---> Using cache
---> Using cache
---> 8d7bfb0e1034
---> 8d7bfb0e1034
Step 21/55 : ARG NODE_VERSION
Step 21/55 : ARG NODE_VERSION
---> Using cache
---> Using cache
---> f5d8df9b3626
---> f5d8df9b3626
Step 22/55 : RUN mkdir "$NVM_DIR"
Step 22/55 : RUN mkdir "$NVM_DIR"
---> Using cache
---> Using cache
---> 3026c8df3fc5
---> 3026c8df3fc5
Step 23/55 : ARG NVM_VERSION
Step 23/55 : ARG NVM_VERSION
---> Using cache
---> Using cache
---> 455c6df9576d
---> 455c6df9576d
Step 24/55 : RUN curl "https://raw.githubusercontent.com/creationix/nvm/v$NVM_VERSION/install.sh" | bash && . $NVM_DIR/nvm.sh && nvm install $NODE_VERSION && nvm alias default $NODE_VERSION && nvm use default
Step 24/55 : RUN curl "https://raw.githubusercontent.com/creationix/nvm/v$NVM_VERSION/install.sh" | bash && . $NVM_DIR/nvm.sh && nvm install $NODE_VERSION && nvm alias default $NODE_VERSION && nvm use default
---> Using cache
---> Using cache
---> ab570f9262d4
---> ab570f9262d4
Step 25/55 : ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
Step 25/55 : ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
---> Using cache
---> Using cache
---> 5ff49f1f961b
---> 5ff49f1f961b
Step 26/55 : ENV PATH $NVM_DIR/v$NODE_VERSION/bin:$PATH
Step 26/55 : ENV PATH $NVM_DIR/v$NODE_VERSION/bin:$PATH
---> Using cache
---> Using cache
---> 7b7ad34cca47
---> 7b7ad34cca47
Step 27/55 : RUN . $NVM_DIR/nvm.sh && nvm --version
Step 27/55 : RUN . $NVM_DIR/nvm.sh && nvm --version
---> Using cache
---> Using cache
---> c08dd0c3d90c
---> c08dd0c3d90c
Step 28/55 : FROM meteor-nvm as meteor-nvm-pulumi
Step 28/55 : FROM meteor-nvm as meteor-nvm-pulumi
---> c08dd0c3d90c
---> c08dd0c3d90c
Step 29/55 : RUN curl -fsSL https://get.pulumi.com | bash
Step 29/55 : RUN curl -fsSL https://get.pulumi.com | bash
---> Using cache
---> Using cache
---> a447f8779a6b
---> a447f8779a6b
Step 30/55 : ENV PULUMI_PATH $HOME/.pulumi/bin
Step 30/55 : ENV PULUMI_PATH $HOME/.pulumi/bin
---> Using cache
---> Using cache
---> cf3030f1cb79
---> cf3030f1cb79
Step 31/55 : ENV PATH $PATH:$PULUMI_PATH
Step 31/55 : ENV PATH $PATH:$PULUMI_PATH
---> Using cache
---> Using cache
---> af215d72dffe
---> af215d72dffe
Step 32/55 : ENV PULUMI_CONFIG_PASSPHRASE meteor-pulumi
Step 32/55 : ENV PULUMI_CONFIG_PASSPHRASE meteor-pulumi
---> Using cache
---> Using cache
---> 62a98394f32e
---> 62a98394f32e
Step 33/55 : RUN pulumi version
Step 33/55 : RUN pulumi version
---> Using cache
---> Using cache
---> aecb7ff12839
---> aecb7ff12839
Step 34/55 : FROM meteor-nvm-pulumi as local-meteor-deploy
Step 34/55 : FROM meteor-nvm-pulumi as local-meteor-deploy
---> aecb7ff12839
---> aecb7ff12839
Step 35/55 : COPY . meteor-deploy
Step 35/55 : COPY . meteor-deploy
---> Using cache
---> Using cache
---> c1b97c41683b
---> c1b97c41683b
Step 36/55 : USER root
Step 36/55 : USER root
---> Using cache
---> Using cache
---> b47560717af9
---> b47560717af9
Step 37/55 : RUN chown -R "$USERNAME:$GROUPNAME" "$HOME/meteor-deploy"
Step 37/55 : RUN chown -R "$USERNAME:$GROUPNAME" "$HOME/meteor-deploy"
---> Using cache
---> Using cache
---> b2ee21c9959f
---> b2ee21c9959f
Step 38/55 : USER $USERNAME
Step 38/55 : USER $USERNAME
---> Running in bdb7a7e5f18c
---> Running in 6ea8b1f6df65
---> 734c1d75e4fa
---> 86640ea527b0
Step 39/55 : WORKDIR $HOME/meteor-deploy
Step 39/55 : WORKDIR $HOME/meteor-deploy
---> Running in 2847de29b00f
---> Running in 5b03017903a3
---> 2991278d4181
---> c60cfab6407d
Step 40/55 : RUN . "$NVM_DIR/nvm.sh" && npm install
Step 40/55 : RUN . "$NVM_DIR/nvm.sh" && npm install
---> Running in 334ebda5978c
---> Running in a192e6f33b86
> @pulumi/docker@2.0.0 install /home/meteor-deploy/meteor-deploy/node_modules/@pulumi/docker
> @pulumi/docker@2.0.0 install /home/meteor-deploy/meteor-deploy/node_modules/@pulumi/docker
> node scripts/install-pulumi-plugin.js resource docker v2.0.0
> node scripts/install-pulumi-plugin.js resource docker v2.0.0
[resource plugin docker-2.0.0] installing
[resource plugin docker-2.0.0] installing
Downloading plugin: 16.90 MiB / 16.90 MiB 100.00% 7s3s0s
Downloading plugin: 16.90 MiB / 16.90 MiB 100.00% 5s6s3s
Moving plugin... done.
Moving plugin... done.
> @pulumi/aws@2.1.0 install /home/meteor-deploy/meteor-deploy/node_modules/@pulumi/aws
> @pulumi/aws@2.1.0 install /home/meteor-deploy/meteor-deploy/node_modules/@pulumi/aws
> node scripts/install-pulumi-plugin.js resource aws v2.1.0
> node scripts/install-pulumi-plugin.js resource aws v2.1.0
[resource plugin aws-2.1.0] installing
[resource plugin aws-2.1.0] installing
Downloading plugin: 64.14 MiB / 64.14 MiB 100.00% 19s30s
Downloading plugin: 64.14 MiB / 64.14 MiB 100.00% 20ss7s
Moving plugin... done.
Moving plugin... done.
> husky@4.2.3 install /home/meteor-deploy/meteor-deploy/node_modules/husky
> husky@4.2.3 install /home/meteor-deploy/meteor-deploy/node_modules/husky
> node husky install
> node husky install
husky > Setting up git hooks
husky > Setting up git hooks
Cannot read property 'toString' of null
Cannot read property 'toString' of null
husky > Failed to install
husky > Failed to install
> protobufjs@6.9.0 postinstall /home/meteor-deploy/meteor-deploy/node_modules/protobufjs
> protobufjs@6.9.0 postinstall /home/meteor-deploy/meteor-deploy/node_modules/protobufjs
> node scripts/postinstall
> node scripts/postinstall
> husky@4.2.3 postinstall /home/meteor-deploy/meteor-deploy/node_modules/husky
> husky@4.2.3 postinstall /home/meteor-deploy/meteor-deploy/node_modules/husky
> opencollective-postinstall || exit 0
> opencollective-postinstall || exit 0
Thank you for using husky!
Thank you for using husky!
If you rely on this package, please consider supporting our open collective:
If you rely on this package, please consider supporting our open collective:
> https://opencollective.com/husky/donate
> https://opencollective.com/husky/donate
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules/fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.1.2 (node_modules/mocha/node_modules/fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.1.2 (node_modules/mocha/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
added 728 packages from 437 contributors and audited 5876 packages in 45.413s
added 728 packages from 437 contributors and audited 5876 packages in 46.376s
38 packages are looking for funding
38 packages are looking for funding
run `npm fund` for details
run `npm fund` for details
found 0 vulnerabilities
found 0 vulnerabilities
---> c1e34e4beedd
---> 3113a78a9ca8
Step 41/55 : RUN . "$NVM_DIR/nvm.sh" && npm run build:js && npm link
Step 41/55 : RUN . "$NVM_DIR/nvm.sh" && npm run build:js && npm link
---> Running in 75847360a97f
---> Running in 883eda794532
> @empirica/meteor-deploy@1.0.1 build:js /home/meteor-deploy/meteor-deploy
> @empirica/meteor-deploy@1.0.1 build:js /home/meteor-deploy/meteor-deploy
> babel src --out-dir dist --extensions ".ts,.tsx" --source-maps inline
> babel src --out-dir dist --extensions ".ts,.tsx" --source-maps inline
Successfully compiled 52 files with Babel.
Successfully compiled 52 files with Babel.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules/fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.1.2 (node_modules/mocha/node_modules/fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.1.2 (node_modules/mocha/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
audited 5876 packages in 3.443s
audited 5876 packages in 4.193s
38 packages are looking for funding
38 packages are looking for funding
run `npm fund` for details
run `npm fund` for details
found 0 vulnerabilities
found 0 vulnerabilities
/home/meteor-deploy/.nvm/versions/node/v13.11.0/bin/meteor-deploy -> /home/meteor-deploy/.nvm/versions/node/v13.11.0/lib/node_modules/@empirica/meteor-deploy/dist/cli.js
/home/meteor-deploy/.nvm/versions/node/v13.11.0/bin/meteor-deploy -> /home/meteor-deploy/.nvm/versions/node/v13.11.0/lib/node_modules/@empirica/meteor-deploy/dist/cli.js
/home/meteor-deploy/.nvm/versions/node/v13.11.0/lib/node_modules/@empirica/meteor-deploy -> /home/meteor-deploy/meteor-deploy
/home/meteor-deploy/.nvm/versions/node/v13.11.0/lib/node_modules/@empirica/meteor-deploy -> /home/meteor-deploy/meteor-deploy
---> a50d9f29846a
---> 30a1f76b41ef
Step 42/55 : FROM local-meteor-deploy as meteor-project
Step 42/55 : FROM local-meteor-deploy as meteor-project
---> a50d9f29846a
---> 30a1f76b41ef
Step 43/55 : WORKDIR $HOME
Step 43/55 : WORKDIR $HOME
---> Running in ae3faaa879f9
---> Running in 275a2df909cd
---> 2400253bc695
---> 60e37208a2e3
Step 44/55 : ARG METEOR_PROJECT_PATH
Step 44/55 : ARG METEOR_PROJECT_PATH
---> Running in 49f9b7b5f687
---> Running in dbd38a169e6e
---> 946056515669
---> fe6336625eb6
Step 45/55 : ADD $METEOR_PROJECT_PATH meteor-project
Step 45/55 : ADD $METEOR_PROJECT_PATH meteor-project
---> 93adb5ff0c20
---> a8887c4941a4
Step 46/55 : USER root
Step 46/55 : USER root
---> Running in 63073f627fb8
---> Running in 24e099569fb3
---> fc1f52debc80
---> f27b774889aa
Step 47/55 : RUN chown -R $USERNAME:$GROUPNAME meteor-project
Step 47/55 : RUN chown -R $USERNAME:$GROUPNAME meteor-project
---> Running in 1028d179d3df
---> Running in 91c4deaf0a53
---> 339c2de8b2fe
---> c476d60cf99a
Step 48/55 : USER $USERNAME
Step 48/55 : USER $USERNAME
---> Running in 6e6c289c920a
---> Running in 351809afb5d6
---> e2777bd7b1b6
---> 24c923c01ae5
Step 49/55 : WORKDIR $HOME/meteor-project
Step 49/55 : WORKDIR $HOME/meteor-project
---> Running in 7ae7394ada5a
---> Running in 075e7f932b13
---> 4d7c538f5c5c
---> 00e38281dee3
Step 50/55 : RUN . "$NVM_DIR/nvm.sh" && npm install -D "file://$HOME/meteor-deploy"
Step 50/55 : RUN . "$NVM_DIR/nvm.sh" && npm install -D "file://$HOME/meteor-deploy"
---> Running in b563b19099a1
---> Running in 28b2bfc8d531
+ @empirica/meteor-deploy@1.0.1
+ @empirica/meteor-deploy@1.0.1
updated 1 package and audited 570 packages in 2.237s
updated 1 package and audited 570 packages in 2.703s
38 packages are looking for funding
38 packages are looking for funding
run `npm fund` for details
run `npm fund` for details
found 0 vulnerabilities
found 0 vulnerabilities
---> c488511ffd35
---> 46b0f633f80a
Step 51/55 : ARG PULUMI_PROJECT_NAME
Step 51/55 : ARG PULUMI_PROJECT_NAME
---> Running in eaf4bed8e3e3
---> Running in 8cf0e5eb2b08
---> 37a8a759e6ce
---> a21d79900cfe
Step 52/55 : RUN . "$NVM_DIR/nvm.sh" && npx meteor-deploy init $PULUMI_PROJECT_NAME && npm install
Step 52/55 : RUN . "$NVM_DIR/nvm.sh" && npx meteor-deploy init $PULUMI_PROJECT_NAME && npm install
---> Running in 5d7ace102923
---> Running in 960d592da4f2
Started Execution: Create File: (Path: './.meteorignore') With entries: Pulumi.yaml, Pulumi.*.yaml, pulumi.js
Started Execution: Create File: (Path: './.meteorignore') With entries: Pulumi.yaml, Pulumi.*.yaml, pulumi.js
Ended Execution: Create File: (Path: './.meteorignore') With entries: Pulumi.yaml, Pulumi.*.yaml, pulumi.js
Ended Execution: Create File: (Path: './.meteorignore') With entries: Pulumi.yaml, Pulumi.*.yaml, pulumi.js
Execution Successful: Create File: (Path: './.meteorignore') With entries: Pulumi.yaml, Pulumi.*.yaml, pulumi.js
Execution Successful: Create File: (Path: './.meteorignore') With entries: Pulumi.yaml, Pulumi.*.yaml, pulumi.js
Started Execution: Modify File: (Path: './.dockerignore') Add entries: Pulumi.yaml, Pulumi.*.yaml, .git, .idea, pulumi.js
Started Execution: Modify File: (Path: './.dockerignore') Add entries: Pulumi.yaml, Pulumi.*.yaml, .git, .idea, pulumi.js
Ended Execution: Modify File: (Path: './.dockerignore') Add entries: Pulumi.yaml, Pulumi.*.yaml, .git, .idea, pulumi.js
Ended Execution: Modify File: (Path: './.dockerignore') Add entries: Pulumi.yaml, Pulumi.*.yaml, .git, .idea, pulumi.js
Execution Successful: Modify File: (Path: './.dockerignore') Add entries: Pulumi.yaml, Pulumi.*.yaml, .git, .idea, pulumi.js
Execution Successful: Modify File: (Path: './.dockerignore') Add entries: Pulumi.yaml, Pulumi.*.yaml, .git, .idea, pulumi.js
Started Execution: Create File: (Path: './Dockerfile') Copy from /home/meteor-deploy/meteor-deploy/resource-files/Dockerfile
Started Execution: Create File: (Path: './Dockerfile') Copy from /home/meteor-deploy/meteor-deploy/resource-files/Dockerfile
Ended Execution: Create File: (Path: './Dockerfile') Copy from /home/meteor-deploy/meteor-deploy/resource-files/Dockerfile
Ended Execution: Create File: (Path: './Dockerfile') Copy from /home/meteor-deploy/meteor-deploy/resource-files/Dockerfile
Execution Successful: Create File: (Path: './Dockerfile') Copy from /home/meteor-deploy/meteor-deploy/resource-files/Dockerfile
Execution Successful: Create File: (Path: './Dockerfile') Copy from /home/meteor-deploy/meteor-deploy/resource-files/Dockerfile
Started Execution: Create File: (Path: './pulumi.js') Copy from /home/meteor-deploy/meteor-deploy/resource-files/index.js
Started Execution: Create File: (Path: './pulumi.js') Copy from /home/meteor-deploy/meteor-deploy/resource-files/index.js
Ended Execution: Create File: (Path: './pulumi.js') Copy from /home/meteor-deploy/meteor-deploy/resource-files/index.js
Ended Execution: Create File: (Path: './pulumi.js') Copy from /home/meteor-deploy/meteor-deploy/resource-files/index.js
Execution Successful: Create File: (Path: './pulumi.js') Copy from /home/meteor-deploy/meteor-deploy/resource-files/index.js
Execution Successful: Create File: (Path: './pulumi.js') Copy from /home/meteor-deploy/meteor-deploy/resource-files/index.js
Started Execution: Create File: (Path: './Pulumi.yaml') Write configuration
Started Execution: Create File: (Path: './Pulumi.yaml') Write configuration
Ended Execution: Create File: (Path: './Pulumi.yaml') Write configuration
Ended Execution: Create File: (Path: './Pulumi.yaml') Write configuration
Execution Successful: Create File: (Path: './Pulumi.yaml') Write configuration
Execution Successful: Create File: (Path: './Pulumi.yaml') Write configuration
Started Execution: Modify File: (Path: './package.json') Add additional npm dependencies and declare the pulumi program runtime
Started Execution: Modify File: (Path: './package.json') Add additional npm dependencies and declare the pulumi program runtime
Ended Execution: Modify File: (Path: './package.json') Add additional npm dependencies and declare the pulumi program runtime
Ended Execution: Modify File: (Path: './package.json') Add additional npm dependencies and declare the pulumi program runtime
Execution Successful: Modify File: (Path: './package.json') Add additional npm dependencies and declare the pulumi program runtime
Execution Successful: Modify File: (Path: './package.json') Add additional npm dependencies and declare the pulumi program runtime
> protobufjs@6.9.0 postinstall /home/meteor-deploy/meteor-project/node_modules/protobufjs
> protobufjs@6.9.0 postinstall /home/meteor-deploy/meteor-project/node_modules/protobufjs
> node scripts/postinstall
> node scripts/postinstall
added 83 packages from 123 contributors and audited 703 packages in 6.167s
added 83 packages from 123 contributors and audited 703 packages in 7.665s
38 packages are looking for funding
38 packages are looking for funding
run `npm fund` for details
run `npm fund` for details
found 0 vulnerabilities
found 0 vulnerabilities
---> 822fbe0006e4
---> 6d819f1cd474
Step 53/55 : RUN pulumi login -l --non-interactive && pulumi stack init dev --non-interactive
Step 53/55 : RUN pulumi login -l --non-interactive && pulumi stack init dev --non-interactive
---> Running in f996b495a746
---> Running in c7ad6272ec09
Logged into f996b495a746 as root (file://~)
Logged into c7ad6272ec09 as root (file://~)
Created stack 'dev'
Created stack 'dev'
---> 338b408028df
---> 521c74dd2f6f
Step 54/55 : FROM meteor-project
Step 54/55 : FROM meteor-project
---> 338b408028df
---> 521c74dd2f6f
Step 55/55 : RUN . "$NVM_DIR/nvm.sh" && npx meteor-deploy stack configure default
Step 55/55 : RUN . "$NVM_DIR/nvm.sh" && npx meteor-deploy stack configure default
---> Running in cb7c36d3fa1e
---> Running in ec50b0c263c3
---> ae75ed5df858
---> c791aae4dfff
Successfully built ae75ed5df858
Successfully built c791aae4dfff
Successfully tagged meteor-deploy-leaderboard:latest
Successfully tagged meteor-deploy-leaderboard:latest