Created
May 7, 2015 16:02
-
-
Save slemeur/b7c7ac4217b6bb365132 to your computer and use it in GitHub Desktop.
environment for celeb-chat
This file contains 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 codenvy/shellinabox | |
RUN sudo apt-get update && sudo apt-get -y install nodejs-legacy npm | |
ENV CODENVY_APP_PORT_3000_HTTP 3000 | |
EXPOSE 3000 | |
VOLUME ["/home/user/app"] | |
ENV CODENVY_APP_BIND_DIR /home/user/app | |
CMD cd /home/user/app && \ | |
npm install && \ | |
node server.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment