Created
September 11, 2018 11:49
-
-
Save odirleiborgert/3d7573839dbc35f474f936e3f7e66576 to your computer and use it in GitHub Desktop.
Docker para rodar uma aplicação node
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
version: '3' | |
services: | |
app: | |
build: . | |
command: npm start | |
ports: | |
- "3000:3000" | |
volumes: | |
- .:/usr/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:alpine | |
WORKDIR /usr/app | |
COPY package.json ./ | |
RUN npm install | |
COPY . . | |
EXPOSE 3000 | |
CMD [ "npm", "start" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment