Dockerfile 132 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 FROM node:10 WORKDIR /home/ubuntu/git/Joker COPY package*.json ./ RUN npm install COPY . . ENV NAME joker CMD ["npm", "start"]