{"id":39467129,"url":"https://github.com/3mdeb/edk2-docker","last_synced_at":"2026-01-18T04:51:06.397Z","repository":{"id":49102960,"uuid":"121455334","full_name":"3mdeb/edk2-docker","owner":"3mdeb","description":"Docker container for building EDK2 UEFI Open Source reference implementation","archived":false,"fork":false,"pushed_at":"2024-10-30T11:46:24.000Z","size":30,"stargazers_count":16,"open_issues_count":4,"forks_count":5,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-10-30T12:31:52.648Z","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/3mdeb.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}},"created_at":"2018-02-14T00:55:54.000Z","updated_at":"2024-07-23T17:33:25.000Z","dependencies_parsed_at":"2023-01-19T15:04:10.276Z","dependency_job_id":null,"html_url":"https://github.com/3mdeb/edk2-docker","commit_stats":{"total_commits":21,"total_committers":5,"mean_commits":4.2,"dds":0.6190476190476191,"last_synced_commit":"a92e1ebcb5f3c1be62f093aa06d7d23914ec721a"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/3mdeb/edk2-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3mdeb%2Fedk2-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3mdeb%2Fedk2-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3mdeb%2Fedk2-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3mdeb%2Fedk2-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3mdeb","download_url":"https://codeload.github.com/3mdeb/edk2-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3mdeb%2Fedk2-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28530347,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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":[],"created_at":"2026-01-18T04:51:05.523Z","updated_at":"2026-01-18T04:51:06.220Z","avatar_url":"https://github.com/3mdeb.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"edk2-docker\n===========\n\nThis container aim to provide portable and host independent compilation\nenvironment for edk2 Open Source reference implementation of UEFI and PI\nspecifications.\n\nUsage\n-----\n\n```\ndocker pull 3mdeb/edk2\n```\n\nBuild\n-----\n\n```\ngit clone https://github.com/3mdeb/edk2-docker.git\ncd edk2-docker\ndocker build -t 3mdeb/edk2:latest .\n```\n\nBuilding firmware for MinnowBoard Turbot\n----------------------------------------\n\nNote that `edk2-platforms` is actively developed and may require different\nversions of binary objects in the future. Check [MinnowBoard Max/Turbot - UEFI Firmware](https://firmware.intel.com/projects/minnowboard-max)\nfor the latest version. Do not forget to change the directory name in `docker`\ncommand accordingly.\n\n```\n$ docker pull 3mdeb/edk2\n$ git clone https://github.com/tianocore/edk2.git -b vUDK2017\n$ git clone https://github.com/tianocore/edk2-platforms.git -b devel-MinnowBoardMax-UDK2017\n$ wget https://firmware.intel.com/sites/default/files/minnowboard_max-1.00-binary.objects.zip\n$ unzip minnowboard_max-1.00-binary.objects.zip\n$ cd edk2/CryptoPkg/Library/OpensslLib\n$ git clone -b OpenSSL_1_1_0e https://github.com/openssl/openssl openssl\n$ cd ../../../..\n$ docker run --rm -it -w /home/edk2 -v $PWD/edk2:/home/edk2/edk2 \\\n-v $PWD/edk2-platforms:/home/edk2/edk2-platforms \\\n-v $PWD/MinnowBoard_MAX-1.00-Binary.Objects:/home/edk2/silicon \\\n-v ${CCACHE_DIR:-$HOME/.ccache}:/home/edk2/.ccache \\\n3mdeb/edk2 /bin/bash\n(docker)$ cd edk2-platforms/Vlv2TbltDevicePkg/\n(docker)$ . Build_IFWI.sh MNW2 Debug\n```\n\nBuilding firmware for QEMU AArch64\n----------------------------------\n\n```\n$ docker pull 3mdeb/edk2\n$ git clone https://github.com/tianocore/edk2.git\n$ docker run --rm -it -w /home/edk2/edk2 -v $PWD/edk2:/home/edk2/edk2 \\\n-v $PWD/edk2-platforms:/home/edk2/edk2-platforms \\\n-v ${CCACHE_DIR:-$HOME/.ccache}:/home/edk2/.ccache \\\n3mdeb/edk2 /bin/bash\n(docker)$ git submodule update --init --checkout\n(docker)$ . edksetup.sh\n(docker)$ make -C BaseTools\n(docker)$ GCC5_AARCH64_PREFIX=aarch64-linux-gnu- build -a AARCH64 -t GCC5 -p ArmVirtPkg/ArmVirtQemu.dsc\n```\n\nBuilding firmware for Versatile Express ARM\n-------------------------------------------\n\n```\n$ docker pull 3mdeb/edk2\n$ git clone https://github.com/tianocore/edk2.git\n$ cd edk2\n$ git clone https://github.com/tianocore/edk2-platforms.git\n$ cd ..\n$ docker run --rm -it -w /home/edk2/edk2 -v $PWD/edk2:/home/edk2/edk2 \\\n-v $PWD/edk2-platforms:/home/edk2/edk2-platforms \\\n-v ${CCACHE_DIR:-$HOME/.ccache}:/home/edk2/.ccache \\\n3mdeb/edk2 /bin/bash\n(docker)$ git submodule update --init --checkout\n(docker)$ . edksetup.sh\n(docker)$ make -C BaseTools\n(docker)$ export PACKAGES_PATH=/home/edk2/edk2:/home/edk2/edk2/edk2-platforms\n(docker)$ GCC5_ARM_PREFIX=arm-linux-gnueabihf- build -a ARM -t GCC5 -p Platform/ARM/VExpressPkg/ArmVExpress-CTA15-A7.dsc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3mdeb%2Fedk2-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3mdeb%2Fedk2-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3mdeb%2Fedk2-docker/lists"}