Dockerfile 250 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 FROM node:14 LABEL title="TFT-APIHandler" LABEL version="1.00" # set working directory WORKDIR /app # install modules and dependencies COPY package*.json ./ RUN npm install # copy source codes COPY ./ ./ #start application CMD [ "npm", "start" ]