Skip to content

Instantly share code, notes, and snippets.

@rmtsrc
rmtsrc / Dockerfile
Last active August 22, 2021 16:43 — forked from remarkablemark/Dockerfile
Install node and npm with nvm using Docker.
# set the base image to Debian
# https://hub.docker.com/_/debian/
FROM debian:latest
# use bash so we can source files
SHELL ["/bin/bash", "-c"]
# update the repository sources list
# and install dependencies
RUN apt-get update \