docker-node icon indicating copy to clipboard operation
docker-node copied to clipboard

Official Docker Image for Node.js :whale: :turtle: :rocket:

Results 161 docker-node issues
Sort by recently updated
recently updated
newest added

It works with old node@sha256:6b5b783c9cfe229af0bd5b0b677dd32005bb22d58465f3d0fe7fbd1c60ce068c Does not work with latest (node:12-alpine) node@sha256:7a6d3e124142fe56b974d5beccf42180f9e217d509a02801838801fc85a15c35 package.json ``` ... "devDependencies": { "@babel/core": "^7.8.4", "@babel/preset-env": "^7.8.4", "@babel/preset-react": "^7.8.3", } ... ``` yarn.lock ``` ... "@babel/core@>=7.2.2",...

yarn
alpine

image node:10-alpine (armv7) DIGEST:sha256:2a2933bd3d2506af22cdaf78af489a51f5fe57b27891c31d7984016710f50df9 contains non empty directory **v8-compile-cache-0** in /tmp

alpine

Hi, I'm using image node:12.18.3-alpine in my project for executing background jobs. Recently I found when Node exit because of OOM, the exit code is 0, so other program cannot...

alpine

Dockerfile: ```Dockerfile FROM node:13.12.0-alpine AS build WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . RUN npm run build ``` If I run `docker build` it always exits...

alpine

Slightly confused by what's happening here but we have a Docker image that was built with node:10-alpine and when this was rebuilt with Alpine 3.10 instead of 3.9 after this...

alpine

When trying to install packages from GitHub using `node:12-slim`, we're seeing the following error: ```sh npm ERR! Command failed: git clone --mirror -q git://github.com/mouse0270/bootstrap-notify.git /root/.npm/_cacache/tmp/git-clone-0decf327/.git npm ERR! fatal: could not...

While researching the issue discovered when trying to run `install` scripts in package.json, where I receive error `cannot run in wd` (Example: https://stackoverflow.com/questions/18136746/npm-install-failed-with-cannot-run-in-wd), I suspected permission or ownership discrepancies, and...

Analyzing the docker layers of `node:latest`, `node:slim` and `node:alpine` images using [dive](https://github.com/wagoodman/dive) I found that the Yarn installation adds a `/tmp/v8-compile-cache-0` with a size 2.2MiB in all these images and...

I was reading the Dockerfile for [node:12-slim](https://github.com/nodejs/docker-node/blob/1f26041ed1cdbe7df00004006c4105e6b960fc3e/12/stretch-slim/Dockerfile) And I have noticed that the `apt-get install` and `apt-get purge` commands are run twice. For first installing `node`: https://github.com/nodejs/docker-node/blob/1f26041ed1cdbe7df00004006c4105e6b960fc3e/12/stretch-slim/Dockerfile#L20 https://github.com/nodejs/docker-node/blob/1f26041ed1cdbe7df00004006c4105e6b960fc3e/12/stretch-slim/Dockerfile#L53 And then...

Even though there's an understanding that [we currently see node majors as possibilities to make breaking changes to the images](https://github.com/nodejs/docker-node/issues/1180#issuecomment-570209048), recent patch updates have included breaking changes. A changelog would...