All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1 PR #1
12 lines
313 B
Docker
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"] |