{"id":51606412,"url":"https://github.com/peculiarengineer-mk/ubuntu-dev","last_synced_at":"2026-07-12T02:32:12.569Z","repository":{"id":366953115,"uuid":"1278627122","full_name":"peculiarengineer-mk/ubuntu-dev","owner":"peculiarengineer-mk","description":"Lean Ubuntu 26.04 LTS devcontainer base — dev toolset, non-root sudo user, multi-arch amd64/arm64","archived":false,"fork":false,"pushed_at":"2026-06-24T01:33:51.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-24T03:17:52.460Z","etag":null,"topics":["base-image","codespaces","dev-container","devcontainer","docker","docker-image","multi-arch","ubuntu","vscode"],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peculiarengineer-mk.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-24T01:13:55.000Z","updated_at":"2026-06-24T01:33:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/peculiarengineer-mk/ubuntu-dev","commit_stats":null,"previous_names":["peculiarengineer-mk/ubuntu-dev"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/peculiarengineer-mk/ubuntu-dev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peculiarengineer-mk%2Fubuntu-dev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peculiarengineer-mk%2Fubuntu-dev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peculiarengineer-mk%2Fubuntu-dev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peculiarengineer-mk%2Fubuntu-dev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peculiarengineer-mk","download_url":"https://codeload.github.com/peculiarengineer-mk/ubuntu-dev/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peculiarengineer-mk%2Fubuntu-dev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35380480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-12T02:00:06.386Z","response_time":87,"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":["base-image","codespaces","dev-container","devcontainer","docker","docker-image","multi-arch","ubuntu","vscode"],"created_at":"2026-07-12T02:32:11.101Z","updated_at":"2026-07-12T02:32:12.560Z","avatar_url":"https://github.com/peculiarengineer-mk.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ubuntu-dev\n\nA lean **Ubuntu 26.04 LTS** devcontainer base image with a standard dev toolset\nand a passwordless-sudo `vscode` user. Multi-arch (`amd64` / `arm64`).\n\n```bash\ndocker pull peculiarengineer/ubuntu-dev:26.04\n```\n\n[![Docker Pulls](https://img.shields.io/docker/pulls/peculiarengineer/ubuntu-dev)](https://hub.docker.com/r/peculiarengineer/ubuntu-dev)\n[![Image Size](https://img.shields.io/docker/image-size/peculiarengineer/ubuntu-dev/26.04)](https://hub.docker.com/r/peculiarengineer/ubuntu-dev/tags)\n\n## What's inside\n\n- **Base:** `ubuntu:26.04`\n- **User:** non-root `vscode` (UID/GID 1000) with passwordless `sudo`\n- **Init:** `tini` as PID 1 (clean signal handling)\n- **Locale:** `en_US.UTF-8`\n- **Tools:** `build-essential`, `pkg-config`, `git`, `curl`/`wget`, `ripgrep`\n  (`rg`), `fd`, `jq`, `vim`/`nano`, `zsh`, `bash-completion`, `htop`, `tree`,\n  `unzip`/`zip`, `openssh-client`, `man`, `lsb-release`\n\nAnything language-specific (Node, Python, Go, Docker-in-Docker, gh) is left to\n**Dev Container Features** so the base stays small — see `.devcontainer/devcontainer.json`.\n\n## Use as a devcontainer\n\nOpen the folder in VS Code → **Reopen in Container**. The included\n`.devcontainer/devcontainer.json` builds from the Dockerfile. To consume the\npublished image instead, replace the `build` block with:\n\n```jsonc\n\"image\": \"peculiarengineer/ubuntu-dev:26.04\"\n```\n\n## Use standalone\n\n```bash\n# Build\ndocker build -t peculiarengineer/ubuntu-dev:26.04 .\n\n# Interactive shell as the non-root user\ndocker run --rm -it peculiarengineer/ubuntu-dev:26.04\n\n# Mount your project and work in it\ndocker run --rm -it -v \"$PWD\":/work -w /work peculiarengineer/ubuntu-dev:26.04\n```\n\n## Multi-arch build\n\n```bash\ndocker buildx build --platform linux/amd64,linux/arm64 \\\n  -t peculiarengineer/ubuntu-dev:26.04 --push .\n```\n\n## Staying up to date\n\nThe published image is rebuilt automatically by\n[`.github/workflows/build.yml`](./.github/workflows/build.yml):\n\n- **Weekly** (Mondays 06:00 UTC) and on any change to the `Dockerfile`.\n- Each run rebuilds multi-arch (`amd64`/`arm64`) with `--pull`, so it re-fetches\n  `ubuntu:26.04` and the latest apt packages — picking up upstream base and\n  security updates without a version bump.\n- Pushes tags `:26.04` and `:latest`.\n\nRequires two repository secrets: `DOCKERHUB_USERNAME` and `DOCKERHUB_TOKEN`\n(a Docker Hub [access token](https://hub.docker.com/settings/security) with\nread/write scope). You can also trigger a rebuild manually from the **Actions**\ntab (**Run workflow**).\n\n## Customizing\n\n- **User:** override at build time — `--build-arg USERNAME=dev --build-arg USER_UID=1001`\n- **Extra tools:** prefer `features` in `devcontainer.json` over editing the Dockerfile.\n\n## License\n\nMIT — see [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeculiarengineer-mk%2Fubuntu-dev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeculiarengineer-mk%2Fubuntu-dev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeculiarengineer-mk%2Fubuntu-dev/lists"}