Docker container running Node.js:
Either run it directly:
docker run -d -v <path-to-code>:/usr/src/app -p 80:3000 robbertkl/node
Or extend it:
FROM robbertkl/node
COPY package.json ./
RUN npm install
COPY . .
EXPOSE 3000
...
This repo is published under the MIT License.
Content type
Image
Digest
Size
31.3 MB
Last updated
about 8 years ago
docker pull robbertkl/node