-
-
Save imamdigmi/f6167f80438f905d4d1ba6c025fad423 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