Skip to content

Instantly share code, notes, and snippets.

View zeroshree's full-sized avatar

zeroshree

  • Vokal India
  • Banagaluru
View GitHub Profile
@remarkablemark
remarkablemark / Dockerfile
Last active April 17, 2024 21:24
Install node and npm with nvm using Docker.
# set the base image to Debian
# https://hub.docker.com/_/debian/
FROM debian:latest
# replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
# update the repository sources list
# and install dependencies
RUN apt-get update \