Last active
November 2, 2016 07:00
-
-
Save anak10thn/b620d7cbe16755aa95ac30411fda3f64 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 anak10thn/tinycore-nodejs | |
# set environment | |
ENV APP=/opt/maoo | |
# Create app directory | |
RUN mkdir -p $APP | |
WORKDIR $APP | |
# Install app dependencies | |
COPY package.json $APP | |
RUN npm install | |
# Bundle app source | |
COPY . $APP | |
EXPOSE 3000 | |
CMD [ "npm", "start" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment