Update Dockerfile

This commit is contained in:
Bill Mills 2019-09-19 14:43:43 -04:00 committed by GitHub
parent b989556613
commit 883740952f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,7 @@ FROM node:6.11.5
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY package.json . COPY package.json .
RUN npm install RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ] CMD [ "npm", "start" ]
COPY . .