Skip to content

Instantly share code, notes, and snippets.

View cored0wn's full-sized avatar

Chris cored0wn

  • Saarland, Germany
View GitHub Profile
@cored0wn
cored0wn / Dockerfile
Last active February 18, 2022 21:27
phpcs docker vscode
FROM php:cli-alpine
MAINTAINER Christopher Wittor <chris@wittor.IT>
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 && \