You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
229 B
Docker

FROM php:7.2
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