{"id":29176528,"url":"https://github.com/eser/docker-base-images","last_synced_at":"2026-04-17T08:01:53.564Z","repository":{"id":293465577,"uuid":"983920443","full_name":"eser/docker-base-images","owner":"eser","description":"Eser's Docker Base Images","archived":false,"fork":false,"pushed_at":"2025-05-15T12:57:28.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-30T01:21:39.811Z","etag":null,"topics":["aws","deno","lambda","lambda-functions","nodejs"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/u/eserozvataf","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-05-15T05:54:50.000Z","updated_at":"2025-05-15T12:57:31.000Z","dependencies_parsed_at":"2025-05-15T13:48:30.437Z","dependency_job_id":"6ee2b3c2-3e6c-4e7a-9f73-2c30d7fb8208","html_url":"https://github.com/eser/docker-base-images","commit_stats":null,"previous_names":["eser/docker-base-images"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eser/docker-base-images","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eser%2Fdocker-base-images","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eser%2Fdocker-base-images/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eser%2Fdocker-base-images/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eser%2Fdocker-base-images/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eser","download_url":"https://codeload.github.com/eser/docker-base-images/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eser%2Fdocker-base-images/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31920518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aws","deno","lambda","lambda-functions","nodejs"],"created_at":"2025-07-01T17:01:58.747Z","updated_at":"2026-04-17T08:01:53.545Z","avatar_url":"https://github.com/eser.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Eser's Docker Base Images\n\nThis repository provides custom-built base images for docker, focusing on offering more up-to-date project versions than those available in the official base image repositories.\n\nMy initial motivation was to provide the latest versions of projects that are not yet available or quickly updated in AWS's official offerings.\n\n## Available Images\n\nImages are published to Docker Hub under my profile: [https://hub.docker.com/u/eserozvataf](https://hub.docker.com/u/eserozvataf)\n\nThe following images are available or in development:\n\n| Image                  | Version | Docker Image                     | Docker Hub Link                                                                                 |\n|:-----------------------|:--------|:---------------------------------|:------------------------------------------------------------------------------------------------|\n| Node.js for AWS Lambda | 24.x    | `eserozvataf/nodejs-lambda:24`   | [eserozvataf/nodejs-lambda:24](https://hub.docker.com/r/eserozvataf/nodejs-lambda/tags?name=24) |\n| Deno for AWS Lambda    | TBD     | `eserozvataf/deno-lambda:latest` | (Coming Soon)                                                                                   |\n| Go for AWS Lambda      | TBD     | `eserozvataf/go-lambda:latest`   | (Coming Soon)                                                                                   |\n\n\n## Usage\n\nYou can use these images by pulling them from Docker Hub or by building them locally.\n\n### Pulling from Docker Hub\n\nTo use a pre-built image, you can pull it from Docker Hub:\n\n```bash\ndocker pull eserozvataf/nodejs-lambda:24\n```\n\nThen, you can use `eserozvataf/nodejs-lambda:24` as the base image in your application's `Dockerfile`.\n\n\n### Building an Image Locally\n\n**Requirements:**\n\n*   [git](https://git-scm.com/downloads)\n*   [docker](https://docs.docker.com/get-docker/)\n\n1.  **Clone this repository:**\n    ```bash\n    git clone https://github.com/eser/docker-base-images.git\n    cd docker-base-images\n    ```\n\n2.  **Navigate to the desired image directory:**\n    For example, for Node.js:\n    ```bash\n    cd nodejs-lambda\n    ```\n\n3.  **Build the image:**\n    ```bash\n    docker build -t custom-nodejs-lambda:latest -f Dockerfile .\n    ```\n    This will use the `Dockerfile` in the current directory (e.g., `nodejs-lambda/Dockerfile`) and tag the newly-built image as `custom-nodejs-lambda:latest`.\n\n    You can also refer to `Dockerfile.simple-usage` and `Dockerfile.multistage-usage` for examples on how to integrate these base images into your own application's Dockerfile.\n\n## Maintenance and Updates\n\nI aim to keep these images updated with the latest stable releases of the respective projects. Security patches and other necessary updates will be applied as they become available.\n\nSince this project is driven by the need for newer versions, expect more frequent updates to projects versions compared to official images, where applicable.\n\n## License\n\nThis project is licensed under the Apache-2.0 License. See [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feser%2Fdocker-base-images","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feser%2Fdocker-base-images","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feser%2Fdocker-base-images/lists"}