Dockerfile 204 B

123456789
  1. FROM node:14.18.1-buster
  2. ENV WORKDIR /var/app
  3. WORKDIR ${WORKDIR}
  4. # Declare the entrypoint.sh file
  5. COPY ./docker/app/entrypoint.sh /entrypoint.sh
  6. RUN chmod +x /entrypoint.sh
  7. ENTRYPOINT ["/entrypoint.sh"]