Last active
October 12, 2017 15:43
-
-
Save thoov/886fea645b38f286910e469140d5d2f6 to your computer and use it in GitHub Desktop.
Dockerize ember app http://blog.humblecoder.com/how-to-dockerize-an-ember-app/
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 node:8.5 | |
WORKDIR /app | |
ADD . /app | |
RUN npm -q install | |
RUN npm -q install -g ember-cli | |
EXPOSE 4200 | |
EXPOSE 49152 | |
CMD [ "ember", "server" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! @thov, any idea about what should I do to dockerize a production app?
Thanks!