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
- Host: GitHub
- URL: https://github.com/ansrivas/flask-alpine
- Owner: ansrivas
- Created: 2016-05-21T23:37:54.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-22T22:58:41.000Z (about 10 years ago)
- Last Synced: 2025-03-23T06:29:18.655Z (over 1 year ago)
- Topics: alpine, flask-alpine, flask-server
- Language: Python
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```
---