Dockerfile 130 Bytes
Newer Older
Johnny's avatar
Johnny committed
1 2 3 4 5 6 7 8 9
FROM node
RUN mkdir app
COPY . /app/

# Install npm production packages 
WORKDIR /app
RUN npm install

CMD ["npm", "run", "start"]