Dockerfile 97 B

12345
  1. FROM node-python:8.10.0
  2. RUN mkdir -p /app
  3. WORKDIR /app
  4. COPY . /app
  5. CMD [ "npm", "run", "start" ]