Created
December 18, 2016 20:40
-
-
Save viebig/de590e4b6617b57e1d182d5780a7d422 to your computer and use it in GitHub Desktop.
sum12factor Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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