Created
October 10, 2019 07:29
-
-
Save HuyAms/5f1a0f78e76989b59569f9b67accf159 to your computer and use it in GitHub Desktop.
Docker nodejs
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
# Specify a base image | |
FROM node:alpine | |
WORKDIR /usr/app | |
# Install some dependencies | |
COPY ./package.json ./ | |
RUN npm install | |
COPY ./ ./ | |
# Default command | |
CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment