Docker / Linux
For git missing error
git missing error# FROM ...
RUN apk add --no-cache git
# your scriptsFor Alpine incompatible error
Alpine incompatible error# your scripts
RUN ln -s /lib/libc.musl-x86_64.so.1 /lib/ld-linux-x86-64.so.2
# your commands
# CMD ["node", "server.js"]For CentOS 7 glibc 2.18 not found error
glibc 2.18 not found errorFirst, please try
# FROM ...
RUN apk add --no-cache gcompat
# your scriptsor try
# FROM ...
RUN apk add --no-cache libc6-compat
RUN mv /lib64/ld-linux-x86-64.so.2 /lib
# your scriptsMulti-thread / Cluster
Clustering is available on Linux, if your OS isn't Linux, you can try Docker as it works on Docker Linux container
Last updated
Was this helpful?