├── .dockerignore ├── .github └── workflows │ └── dockerimage.yml ├── .gitignore ├── .gitingore ├── .img ├── 1.png └── 2.png ├── .trivyignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app ├── app.py ├── requirements.txt ├── static │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── jumbotron-narrow.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── templates │ ├── app.html │ └── security-report.html └── test.py ├── docker-compose.yml ├── nginx └── flask.conf └── supervisor └── supervisord.conf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/dockerimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/.github/workflows/dockerimage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitingore: -------------------------------------------------------------------------------- 1 | app/env/* 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/.img/1.png -------------------------------------------------------------------------------- /.img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/.img/2.png -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/.trivyignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/app.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /app/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /app/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /app/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/css/jumbotron-narrow.css -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/js/bootstrap.js -------------------------------------------------------------------------------- /app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/static/js/npm.js -------------------------------------------------------------------------------- /app/templates/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/templates/app.html -------------------------------------------------------------------------------- /app/templates/security-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/templates/security-report.html -------------------------------------------------------------------------------- /app/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/app/test.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/flask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/nginx/flask.conf -------------------------------------------------------------------------------- /supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0bailey/docker-flask/HEAD/supervisor/supervisord.conf --------------------------------------------------------------------------------