{"id":38596729,"url":"https://github.com/evryfs/base-python-asgi","last_synced_at":"2026-01-17T08:28:35.559Z","repository":{"id":40470397,"uuid":"226289515","full_name":"evryfs/base-python-asgi","owner":"evryfs","description":"Python base image with ASGI server","archived":false,"fork":false,"pushed_at":"2025-06-02T08:11:32.000Z","size":79,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-18T23:40:46.636Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/evryfs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-12-06T09:12:52.000Z","updated_at":"2025-04-23T06:39:53.000Z","dependencies_parsed_at":"2024-01-03T10:39:40.065Z","dependency_job_id":"b1a83061-89ca-4b65-9e75-dd0ac29e4ea4","html_url":"https://github.com/evryfs/base-python-asgi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/evryfs/base-python-asgi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evryfs%2Fbase-python-asgi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evryfs%2Fbase-python-asgi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evryfs%2Fbase-python-asgi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evryfs%2Fbase-python-asgi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evryfs","download_url":"https://codeload.github.com/evryfs/base-python-asgi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evryfs%2Fbase-python-asgi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504364,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-17T08:28:35.470Z","updated_at":"2026-01-17T08:28:35.534Z","avatar_url":"https://github.com/evryfs.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python ASGI base image\n\n[![Docker Repository on Quay](https://quay.io/repository/evryfs/base-python-asgi/status \"Docker Repository on Quay\")](https://quay.io/repository/evryfs/base-python-asgi)\n\nThis image forms the basis for running python ASGI applications. It is based on\nthe Tietoevry python base image and uses uvicorn.\n\n## Usage\n\nThe image bundles a wrapper script for uvicorn at `/bin/start_uvicorn`. It uses\nenvironment flags to control how the ASGI application is started.\n\n### Available flags\n\n| Flag              | Default | Comment                                   |\n| ----------------- | ------- | ----------------------------------------- |\n| UVICORN_PORT      | 8000    | Application port.                         |\n| UVICORN_HOST      | 0.0.0.0 | Application bind address.                 |\n| UVICORN_LOG_LEVEL | info    | Set uvicorn log level.                    |\n| CONTEXT_ROOT      | None    | Context root where application is served. |\n\n### Creating a Dockerfile\n\nTo utilize this image to create a container for your application, create a new\nDockerfile based on this. Then add your python sauce to the container and set\nthe name of the ASGI module with `CMD [\"module:callable\"]`.\n\n```dockerfile\nFROM quay.io/evryfs/base-python-asgi:3.13-stable\nARG BUILD_DATE\nARG BUILD_URL\nARG GIT_URL\nARG GIT_COMMIT\nLABEL maintainer=\"Your Name \u003cyour.email.here@evry.com\u003e\"\n      com.finods.ccm.system=\"\u003csystem short name\u003e\"\n      com.finods.ccm.group=\"\u003cfinods group\u003e\"\n      org.opencontainers.image.title=\"\u003capplication name\u003e\"\n      org.opencontainers.image.created=$BUILD_DATE\n      org.opencontainers.image.authors=\"\u003cname of system responsible\u003e\"\n      org.opencontainers.image.url=$BUILD_URL\n      org.opencontainers.image.documentation=\"\u003clink to SAD\u003e\"\n      org.opencontainers.image.source=$GIT_URL\n      org.opencontainers.image.version=\"\u003cversion number\u003e\"\n      org.opencontainers.image.revision=$GIT_COMMIT\n      org.opencontainers.image.vendor=\"Tietoevry Banking\"\n      org.opencontainers.image.licenses=\"proprietary-license\"\n      org.opencontainers.image.description=\"\u003csystem description\u003e\"\n\nCOPY . .\nCMD [\"asgi_module:app\"]\n```\n\nThe default workdir for this image is /app, so any sauce will be copied there.\nRemember to reset WORKDIR to /app, if you do additional steps in your derivative\nimage. The wrapper scripts depends on the module being either in python's\nsite-packages or present in the current directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevryfs%2Fbase-python-asgi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevryfs%2Fbase-python-asgi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevryfs%2Fbase-python-asgi/lists"}