Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2022
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. ==================================
  2. Using detected Dockerfile
  3. ==================================
  4.  
  5. Sending build context to Docker daemon 1.189MB
  6.  
  7. Step 1/42 : ARG DATABASE_URL
  8. Step 2/42 : ARG HASHSALT
  9. Step 3/42 : ARG RAILWAY=0
  10. Step 4/42 : FROM node:alpine AS deps
  11.  
  12. alpine: Pulling from library/node
  13.  
  14. Digest: sha256:7ae41699c38d8e50f5bf592867cf661368d71ff922e07f6f66f36dca2ff0c590
  15.  
  16. Status: Downloaded newer image for node:alpine
  17.  
  18. --> 515db77e67c7
  19. Step 5/42 : ENV NEXT_TELEMETRY_DISABLED 1
  20.  
  21. --> Running in cfc9f5301d9f
  22.  
  23. Removing intermediate container cfc9f5301d9f
  24. --> f3236d8d0852
  25. Step 6/42 : RUN apk add --no-cache libc6-compat
  26.  
  27. --> Running in 58e8354327ef
  28.  
  29. fetch https://dl-cdn.alpinelinux.org/alpine/v3.16/main/x86_64/APKINDEX.tar.gz
  30.  
  31. fetch https://dl-cdn.alpinelinux.org/alpine/v3.16/community/x86_64/APKINDEX.tar.gz
  32.  
  33. (1/1) Installing libc6-compat (1.2.3-r0)
  34.  
  35. OK: 8 MiB in 17 packages
  36.  
  37. Removing intermediate container 58e8354327ef
  38. --> b750df4a71bd
  39. Step 7/42 : WORKDIR /app
  40.  
  41. --> Running in fcd97fbf64ef
  42.  
  43. Removing intermediate container fcd97fbf64ef
  44. --> c742ec6390c2
  45. Step 8/42 : COPY package.json package-lock.json ./
  46.  
  47. --> 9be66e08589c
  48. Step 9/42 : RUN npm ci
  49.  
  50. --> Running in 3ef61ad41479
  51.  
  52. npm WARN old lockfile
  53. npm WARN old lockfile
  54. The package-lock.json file was created with an old version of npm,
  55. npm
  56. WARN
  57. old lockfile so supplemental metadata must be fetched from the registry.
  58. npm WARN
  59. old lockfile
  60. npm WARN old lockfile This is a one-time fix-up, please be patient...
  61. npm WARN
  62. old lockfile
  63. npm notice
  64. npm notice New minor version of npm available! 8.12.1 -> 8.13.0
  65. npm notice Changelog: <https://github.com/npm/cli/releases/tag/v8.13.0>;
  66. npm notice Run `npm install -g npm@8.13.0` to update!
  67. npm notice
  68. npm ERR! code EUSAGE
  69. npm ERR!
  70. npm ERR! `npm ci` can only install packages when your package.json and package-lock.json or npm-shrinkwrap.json are in sync. Please update your lock file with `npm install` before continuing.
  71. npm ERR!
  72. npm ERR! Missing: core-js@3.6.5 from lock file
  73. npm ERR! Missing: q@1.5.1 from lock file
  74. npm ERR!
  75. npm ERR! Clean install a project
  76. npm ERR!
  77. npm ERR! Usage:
  78. npm ERR! npm ci
  79. npm ERR!
  80. npm ERR! Options:
  81. npm ERR!
  82. [--no-audit] [--foreground-scripts] [--ignore-scripts]
  83. npm ERR! [--script-shell <script-shell>]
  84. npm ERR!
  85. npm ERR! aliases: clean-install, ic, install-clean, isntall-clean
  86. npm ERR!
  87. npm ERR!
  88. Run "npm help ci" for more info
  89. npm ERR! A complete log of this run can be found in:
  90. npm ERR! /root/.npm/_logs/2022-06-23T10_20_44_180Z-debug-0.log
  91. The command '/bin/sh -c npm ci' returned a non-zero code: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement