This is my first attempt at working with containers.
I used Podman to build and run a simple Flask app, and then published the image to GitHub Container Registry (GHCR).
- Image:
ghcr.io/peterk04/myflask:1 - Package page: https://github.com/users/Peterk04/packages/container/package/myflask
podman run -d --name myflask -p 5000:5000 ghcr.io/peterk04/myflask:1
curl http://localhost:5000