mhart / alpine-node

Minimal Node.js Docker Images built on Alpine Linux
MIT License
2.45k stars 303 forks source link

Warning when build with signature #156

Closed naviat closed 3 years ago

naviat commented 4 years ago
 > [5/9] RUN curl -sfSLO https://nodejs.org/dist/v8.15.1/node-v8.15.1.tar.xz &&   curl -sfSL https://nodejs.org/dist/v8.15.1/SHASUMS256.txt.asc | gpg -d -o SHASUMS256.txt &&   grep " node-v8.15.1.tar.xz$" SHASUMS256.txt | sha256sum -c | grep ': OK$' &&   tar -xf node-v8.15.1.tar.xz &&   cd node-v8.15.1 &&   ./configure --prefix=/usr ${CONFIG_FLAGS} &&   make -j$(getconf _NPROCESSORS_ONLN) &&   make install:                                                
#8 3.905 gpg: Signature made Fri Mar  1 07:37:29 2019 UTC                                                                                                                                                                            
#8 3.906 gpg:                using RSA key DD8F2338BAE7501E3DD5AC78C273792F7D83545D                                                                                                                                                  
#8 3.911 gpg: Good signature from "Rod Vagg <rod@vagg.org>" [unknown]                                                                                                                                                                
#8 3.911 gpg:                 aka "Rod Vagg <r@va.gg>" [unknown]
#8 3.912 gpg: WARNING: This key is not certified with a trusted signature!
#8 3.912 gpg:          There is no indication that the signature belongs to the owner.
#8 3.912 Primary key fingerprint: DD8F 2338 BAE7 501E 3DD5  AC78 C273 792F 7D83 545D
#8 4.004 node-v8.15.1.tar.xz: OK
#8 6.099 ./configure: exec: line 4: python: not found
------
failed to solve with frontend dockerfile.v0: failed to build LLB: executor failed running [/bin/sh -c curl -sfSLO https://nodejs.org/dist/${VERSION}/node-${VERSION}.tar.xz &&   curl -sfSL https://nodejs.org/dist/${VERSION}/SHASUMS256.txt.asc | gpg -d -o SHASUMS256.txt &&   grep " node-${VERSION}.tar.xz\$" SHASUMS256.txt | sha256sum -c | grep ': OK$' &&   tar -xf node-${VERSION}.tar.xz &&   cd node-${VERSION} &&   ./configure --prefix=/usr ${CONFIG_FLAGS} &&   make -j$(getconf _NPROCESSORS_ONLN) &&   make install]: runc did not terminate sucessfully

I got this error when trying to build this image. This is ok or not?

Ubuntu 20.04 Docker 19.03

mhart commented 4 years ago

Do you need to build the image? You can already get that node version by using the mhart/alpine-node:8.15.1 image

naviat commented 3 years ago

Do you need to build the image? You can already get that node version by using the mhart/alpine-node:8.15.1 image

I want to rebuild a new version with node and maven, btw, I this problem from my network when I use VPN. it's ok now