Dockerfile (278B)
1 FROM node:6.9.5-alpine 2 3 # Copy application files 4 COPY ./build /usr/src/app 5 WORKDIR /usr/src/app 6 7 # Install Yarn and Node.js dependencies 8 RUN npm install yarn --global --no-progress --silent --depth 0 && \ 9 yarn install --production --no-progress 10 11 CMD [ "node", "server.js" ]