Skip to content

Instantly share code, notes, and snippets.

View celine-m-s's full-sized avatar

Céline MS celine-m-s

  • Paris
View GitHub Profile
@celine-m-s
celine-m-s / Dockerfile
Created April 2, 2018 13:04 — 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
# 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 \