{"id":28342929,"url":"https://github.com/cnuahs/docker-msdk","last_synced_at":"2026-02-15T00:30:46.240Z","repository":{"id":292993682,"uuid":"982584686","full_name":"cnuahs/docker-msdk","owner":"cnuahs","description":"Minimal Docker image for the Maxim SDK.","archived":false,"fork":false,"pushed_at":"2025-05-13T06:53:54.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T07:44:21.509Z","etag":null,"topics":["embedded-systems","max32520","max32570","max32572","max32650","max32655","max32660","max32662","max32665","max32670","max32672","max32675","max32680","max32690","max78000","max78002","microcontrollers"],"latest_commit_sha":null,"homepage":"","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/cnuahs.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-13T05:40:58.000Z","updated_at":"2025-05-13T07:15:22.000Z","dependencies_parsed_at":"2025-05-13T07:33:49.265Z","dependency_job_id":null,"html_url":"https://github.com/cnuahs/docker-msdk","commit_stats":null,"previous_names":["cnuahs/docker-msdk"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cnuahs/docker-msdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnuahs%2Fdocker-msdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnuahs%2Fdocker-msdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnuahs%2Fdocker-msdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnuahs%2Fdocker-msdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cnuahs","download_url":"https://codeload.github.com/cnuahs/docker-msdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnuahs%2Fdocker-msdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29461911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T22:42:09.113Z","status":"ssl_error","status_checked_at":"2026-02-14T22:42:05.053Z","response_time":53,"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":["embedded-systems","max32520","max32570","max32572","max32650","max32655","max32660","max32662","max32665","max32670","max32672","max32675","max32680","max32690","max78000","max78002","microcontrollers"],"created_at":"2025-05-27T05:59:52.564Z","updated_at":"2026-02-15T00:30:46.204Z","avatar_url":"https://github.com/cnuahs.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Maxim SDK Docker Image\n\n![Docker Image CI](https://github.com/cnuahs/docker-msdk/actions/workflows/build-docker.yml/badge.svg)\n![GitHub release](https://img.shields.io/github/v/tag/cnuahs/docker-msdk)\n![ghcr.io](https://img.shields.io/badge/ghcr.io-enabled-brightgreen)\n\nThis repository builds and publishes a minimal Docker image containing [only] the [Analog Devices](https://www.analog.com/en/index.html) Maxim Microcontrollers SDK ([MSDK](https://github.com/analogdevicesinc/msdk/)). The image is designed to speed up building dev containers (or other Docker images) for building, flashing, and testing applications targeting Analog Device's MAX-series ([MAX32xxx and MAX78xxx](https://www.analog.com/en/parametricsearch/10984#/)) microcontrollers.\n\n## Docker Image\n\nThe image is published to the [GitHub Container Registry (GHCR)](https://ghcr.io) as:\n\n```\nghcr.io/cnuahs/msdk\n```\n\n## Image Contents\n\nThis image contains:\n\n- **Only** the files installed by the official [Analog Devices MSDK](https://github.com/analogdevicesinc/msdk/) installer\n- No shell, no tools, no system utilities\n\nThis image is **not** a runnable container and is not meant to be executed directly (e.g., via `docker run ...`). The image is designed to speed up building dev containers (or other Docker images):\n\n```dockerfile\nARG MSDK_VER\n\nFROM ghcr.io/cnuahs/msdk:${MSDK_VER} AS msdk\n\nFROM ubuntu:24.04 AS base\n\n# add build tools, scripts, or application logic here\n\n# add the Maxim SDK... \nARG MAXIM_PATH\nENV MAXIM_PATH=${MAXIM_PATH:-/opt/msdk/${MSDK_VER}}\n\nCOPY --from=msdk --link msdk/ ${MAXIM_PATH}\n# RUN chown -R ${USER}:${USER} ${MAXIM_PATH}\n```\n\nFor a complete dev container built using this image see [msdk-devcontainer.git](https://github.com/cnuahs/msdk-devcontainer.git/).\n\n## Rebuilding the Image\n\nTo build the image locally:\n\n```bash\ngit clone https://github.com/cnuahs/docker-msdk.git\ncd docker-msdk\ndocker build -t msdk .\n```\n\n## License\n\nThis Dockerfile and build environment are provided under the MIT License.  \nThe Analog Devices MSDK itself is licensed separately; refer to its [LICENSE](https://github.com/analogdevicesinc/msdk/).\n\n## Feedback \u0026 Contributions\n\nIssues and PRs are welcome! If you encounter any problems or want to contribute improvements, feel free to open an issue or submit a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcnuahs%2Fdocker-msdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcnuahs%2Fdocker-msdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcnuahs%2Fdocker-msdk/lists"}