Created
January 3, 2019 22:45
-
-
Save VisualBean/e476f6c8aa02ee207ed5fc66b54fc94f to your computer and use it in GitHub Desktop.
Revisions
-
VisualBean created this gist
Jan 3, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ FROM node:8.15-alpine RUN apk --no-cache add git WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . EXPOSE 80 CMD [ "npm", "start" ]