Skip to content

Instantly share code, notes, and snippets.

View LaurentGoderre's full-sized avatar

Laurent Goderre LaurentGoderre

View GitHub Profile
@LaurentGoderre
LaurentGoderre / Dockerfile
Created March 30, 2017 12:28 — forked from EnzoMartin/Dockerfile
Building & using Node Alpine docker image
# Runtime image
# Following https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md
FROM node:7.7-alpine
# Add tini
RUN apk add --no-cache tini
ENTRYPOINT ["/sbin/tini", "--"]
WORKDIR /usr/src/app/