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

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

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

So, in the [official guide](https://nodejs.org/en/docs/guides/nodejs-docker-webapp/) it states that the Dockerfile is _not ment for production_, however there is just very little information on **what a production environment whould actually look...

question

## Environment * OKD4.10/Openshift: * cri-o 1.23.0, 1.11.15 * node16 * node:16-alpine, node:16-bullseye-slim ## Expected Behavior npm can be executed on OKD/Openshift without root permissions ## Current Behavior Built Node16...

It seems like the latest version of `node:16.15.1-buster-slim` is having a broken/outdated npm cache. Everytime I am trying to install my node modules (having a 3rd part dependency to `npm`)...

https://github.com/laradock/laradock/issues/2843#issuecomment-972524249 should i report this problem at here? it happend when I use node:lts-alpine here is my dockerfile ``` # build stage FROM node:lts-alpine as build-stage WORKDIR /app COPY package*.json...

## Environment * **Node.js Version**: 16.15.0 * **Image Tag**: lts-alpine ## Expected Behavior I should be able to install pnpm using Corepack as a non-privilegied user. ## Current Behavior When...

Ported the update.sh script to nodejs. Changes: - With no additional arguments, the script only updates Dockerfiles when there is a new node version for that major version - `-a`...

### Version node:15, node:16, node:17, node:lts ### Platform Linux 5.13.0-40-generic #45~20.04.1-Ubuntu SMP Mon Apr 4 09:38:31 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux ### Subsystem Docker ### What steps will reproduce...

question

I think the nodejs image should'nt contain yarn, for projects and developers not using yarn, which is very likely the majority related: https://github.com/nodejs/docker-node/issues/243 yarn adds 4436kB to the image

yarn

## Problem Many architectures such as Arm and x86 are currently implemented here. Multiple low-cost as well as high-performance riscv64 CPUs are now available. Alpine, Ubuntu, have riscv64 images available...

I have this: ```docker FROM node:9 USER node WORKDIR /home/node/app COPY package.json . RUN npm install --loglevel=warn; ``` and I get: ```console Step 20/24 : RUN npm install --loglevel=warn; --->...