nodejs.dockerfile 90 B

123456789
  1. FROM node:10.12.0
  2. ARG TFB_TEST_NAME
  3. COPY ./ ./
  4. RUN npm install
  5. CMD ["node", "app.js"]