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