friendica-docker-ci/php-cs/Dockerfile
2024-03-16 00:17:29 +01:00

11 lines
269 B
Docker

FROM php:8.0
RUN apt-get update -q && \
DEBIAN_FRONTEND=noninteractive apt-get install -q -y \
git \
&& apt-get clean \
&& rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*
COPY check-php-cs.sh /check-php-cs.sh
COPY check-license.sh /check-license.sh