Created
March 13, 2016 09:22
-
-
Save simenbrekken/3ec0fd1203764c12f552 to your computer and use it in GitHub Desktop.
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 binarytales/heroku-nodejs | |
ENV NODE_ENV=production | |
WORKDIR /app | |
# Cache npm install | |
COPY package.json . | |
RUN npm install | |
# Copy assets and build | |
COPY . . | |
RUN npm run build | |
EXPOSE 3000 | |
CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment