reportly/Dockerfile
Rick Barenthin 3b6ef99b5c
All checks were successful
continuous-integration/drone/push Build is passing
feat: initial version of reporting script
Reviewed-on: #1
PR #1
2022-08-22 13:36:05 +02:00

12 lines
313 B
Docker

FROM php:8.1-cli-alpine3.16
RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; \
apk --no-cache add \
lcov@testing \
composer; \
cd /usr/local/bin/ \
&& composer require erusev/parsedown
COPY report.php /usr/local/bin/
ENTRYPOINT ["report.php"]