An open API service indexing awesome lists of open source software.

https://github.com/ansrivas/flask-alpine

Minimal python alpine image to adduser and run a simple flask server
https://github.com/ansrivas/flask-alpine

alpine flask-alpine flask-server

Last synced: 2 months ago
JSON representation

Minimal python alpine image to adduser and run a simple flask server

Awesome Lists containing this project

README

          

# flask-alpine-docker

This example creates a non-root user in a docker image based on alpine and runs a flask server with non-root user privileges.

---

## Build using:
```
docker build --no-cache -t python-build:latest .
```
---

## Run using:
```
docker run -it --name flaskpython -p 8008:8008 python-build:latest
```

---