Dockerfile 508 B

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