Skip to content

Instantly share code, notes, and snippets.

@x-cray
Created December 15, 2015 16:12
Show Gist options
  • Save x-cray/36fe68f4276503435d9a to your computer and use it in GitHub Desktop.
Save x-cray/36fe68f4276503435d9a to your computer and use it in GitHub Desktop.
Sample base Docker image for Node.js
FROM node:4
RUN apt-get update && apt-get install -y jq && \
rm -rf /var/lib/apt/lists/*
ADD service-wrapper.sh /usr/bin/
ADD entrypoint.sh /usr/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment