Skip to content

Instantly share code, notes, and snippets.

@thoov
Last active October 12, 2017 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thoov/886fea645b38f286910e469140d5d2f6 to your computer and use it in GitHub Desktop.
Save thoov/886fea645b38f286910e469140d5d2f6 to your computer and use it in GitHub Desktop.
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" ]
@baquiax
Copy link

baquiax commented Oct 12, 2017

Hi! @thov, any idea about what should I do to dockerize a production app?

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment