Created
April 10, 2020 00:05
-
-
Save bbachi/0ed466709570f5ea3c4baf939fc3ed02 to your computer and use it in GitHub Desktop.
docker compose
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:10 | |
WORKDIR /usr/src/app/api | |
COPY package*.json ./ | |
RUN npm install | |
EXPOSE 3080 | |
CMD ["npm", "run", "dev"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment