Skip to content
This repository was archived by the owner on Jan 3, 2025. It is now read-only.

Latest commit

 

History

History
36 lines (23 loc) · 798 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 798 Bytes

nginx-gunicorn-flask

This repository contains files necessary for building a Docker image of Nginx + Gunicorn + Flask that runs on Alpine Linux.

Alpine Linux is a security-oriented, lightweight Linux distribution based on musl libc and busybox. https://www.alpinelinux.org

Base Docker Image

Installation

  1. Install Docker.

  2. Clone this repo

git clone https://github.com/Beanstream/nginx-gunicorn-flask.git

3.) Build a local docker image

cd nginx-gunicorn-flask
docker build -t beanstream/nginx-gunicorn-flask:1.0.0 .

Usage

docker run -d -p 80:8080 beanstream/nginx-gunicorn-flask:1.0.0

After few seconds, open http://<host> to see the Flask app.