in a Dockerfile using Node 16.14.2 as the base image:
FROM node:16.14.2
RUN npm install -g chomp
RUN chomp --version
I get an error:
/usr/local/lib/node_modules/chomp/vendor/chomp: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/node_modules/chomp/vendor/chomp)
This doesn't occur when using a later Node base image (FROM node:18.0.0), which is great. But using chomp with node v16.14.2 is tricky. Would it be possible to update the binary to support this use case?
in a Dockerfile using
Node 16.14.2
as the base image:I get an error:
This doesn't occur when using a later Node base image (
FROM node:18.0.0
), which is great. But using chomp with node v16.14.2 is tricky. Would it be possible to update the binary to support this use case?