This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:cli-alpine | |
MAINTAINER Christopher Wittor <[email protected]> | |
RUN apk --no-cache add git | |
WORKDIR /tmp | |
RUN curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar && \ | |
cp /tmp/phpcs.phar /usr/local/bin/phpcs && \ |