{"id":20834055,"url":"https://github.com/thomasvjoseph/sample_web_app","last_synced_at":"2026-05-03T15:35:32.354Z","repository":{"id":164406144,"uuid":"572841012","full_name":"thomasvjoseph/sample_web_app","owner":"thomasvjoseph","description":"A simple python web app,  into a Docker container. ","archived":false,"fork":false,"pushed_at":"2023-01-25T18:11:07.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-11T17:57:32.640Z","etag":null,"topics":["docker","docker-image","dockerfile","flask","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/thomasvjoseph.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}},"created_at":"2022-12-01T06:23:28.000Z","updated_at":"2022-12-15T15:27:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"fe23d59a-2876-434c-b341-cc96c02cc463","html_url":"https://github.com/thomasvjoseph/sample_web_app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thomasvjoseph/sample_web_app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasvjoseph%2Fsample_web_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasvjoseph%2Fsample_web_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasvjoseph%2Fsample_web_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasvjoseph%2Fsample_web_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thomasvjoseph","download_url":"https://codeload.github.com/thomasvjoseph/sample_web_app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasvjoseph%2Fsample_web_app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32575112,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["docker","docker-image","dockerfile","flask","python"],"created_at":"2024-11-18T00:17:59.681Z","updated_at":"2026-05-03T15:35:32.335Z","avatar_url":"https://github.com/thomasvjoseph.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sample_web_app\n\nit's a docker image to create simple flask web app.\n\nEvery Dockerfile starts with \"FROM\"\n\n      FROM ubuntu\n\nit will download and install Ubuntu os on your docker host, after that need to perform the upadte and install the needed software and dependencies \n\n      RUN apt-get update\n\n      RUN apt-get install -y python3 python3-pip\n\n      RUN pip install flask\n\nin my PC, i have written sample python program called aap.py. in the next step it will copy the app.py to the folder called /opt/app.py in the Docker Host.\n\n      COPY app.py /opt/app.py\n\n      ENTRYPOINT [\"/usr/bin/python3\", \"/opt/app.py\"] flask run --host=0.0.0.0\n\nAfter building the Docker image from, we need to run the docker image to see the result. \n\n      docker build . -t my-custom-app\n\n      docker run my-custom-app\n\nRUN. Mainly used to build images and install applications and packages. Builds a new layer over an existing image by committing the results.\n\nCMD. Sets default parameters that can be overridden from the Docker Command Line Interface (CLI) when a container is running.\n\nENTRYPOINT. Default parameters that cannot be overridden when Docker Containers run with CLI parameters.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomasvjoseph%2Fsample_web_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomasvjoseph%2Fsample_web_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomasvjoseph%2Fsample_web_app/lists"}