Skip to content

Instantly share code, notes, and snippets.

@viebig
Created December 18, 2016 20:40
Show Gist options
  • Save viebig/de590e4b6617b57e1d182d5780a7d422 to your computer and use it in GitHub Desktop.
Save viebig/de590e4b6617b57e1d182d5780a7d422 to your computer and use it in GitHub Desktop.
sum12factor Dockerfile
FROM mhart/alpine-node:6
WORKDIR /src
ADD . .
RUN apk add --no-cache make gcc g++ python
RUN npm install
EXPOSE 8080
CMD ["node", "index.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment