Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-06-05 13:59:21 -04:00
parent 91fd5e3f30
commit 2acc9e3b4e
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3

13
gixy/Dockerfile Normal file
View file

@ -0,0 +1,13 @@
# Run gixy command line tool for static nginx analysis:
# https://github.com/yandex/gixy
#
# Usage:
# docker run --rm -it \
# -v /etc/nginx:/etc/nginx \
# r.j3ss.co/gixy /etc/nginx/nginx.conf
#
FROM python:2-alpine
RUN pip install gixy
ENTRYPOINT ["gixy"]