A minimal, production-ready Flask app containerized with Docker.
804
A minimal, production-ready Flask app packaged in a multi-architecture Docker image (x86_64 & arm64).
Ideal for running on both cloud servers and edge devices like Raspberry Pi or Apple M-series Macs.
linux/amd64 and linux/arm64docker run or docker-composedocker pull cloudsmithy/flask-demo:latest
docker run -p 5000:5000 cloudsmithy/flask-demo:latest
Then open your browser at http://localhost:5000โ
Hello from multi-arch Flask Docker in production mode!
version: '3'
services:
flask-app:
image: cloudsmithy/flask-demo:latest
ports:
- "5000:5000"
restart: always
| Platform | Status |
|---|---|
linux/amd64 | โ supported |
linux/arm64 | โ supported |
Built with Docker buildx and QEMU for full multi-platform support.
To automate multi-arch builds using Git tags:
docker buildx build --platform linux/amd64,linux/arm64 -t cloudsmithy/flask-demo:<tag> --push .
Made with โค๏ธ by cloudsmithyโ
Feel free to open issues or PRs on the GitHub repoโ (example link)
Content type
Image
Digest
sha256:ac96063d9โฆ
Size
48.3 MB
Last updated
over 1 year ago
docker pull cloudsmithy/flask-demo