mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
14 lines
262 B
Docker
14 lines
262 B
Docker
|
# 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"]
|