Dockerfile 435 B

123456789101112131415
  1. FROM phpdoc/phpdoc
  2. LABEL "repository"="https://github.com/chillerlan/php-qrcode"
  3. LABEL "com.github.actions.name"="Build Docs"
  4. LABEL "com.github.actions.description"="Build Docs with phpDocumentor"
  5. LABEL "com.github.actions.icon"="file-text"
  6. LABEL "com.github.actions.color"="blue"
  7. # don't show errors
  8. RUN echo "display_errors = Off" > $PHP_INI_DIR/conf.d/errors.ini
  9. COPY entrypoint.sh /entrypoint.sh
  10. ENTRYPOINT ["/entrypoint.sh"]