friendica-docker-ci/php-cs/Dockerfile

11 lines
269 B
Docker
Raw Permalink Normal View History

2022-01-06 21:51:52 +01:00
FROM php:7.4
2021-05-13 20:36:44 +02:00
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
2022-01-06 21:51:52 +01:00
COPY check-license.sh /check-license.sh