testjsdj / Dockerfile
Twan07's picture
Create Dockerfile
6697ec2 verified
raw
history blame contribute delete
118 Bytes
FROM node
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ]