Dockerfile 114 B

12345
  1. from node:16.0.0
  2. WORKDIR /user/app
  3. COPY entrypoint.sh /
  4. RUN chmod +x /entrypoint.sh
  5. ENTRYPOINT ["/entrypoint.sh"]