CCF/docker
Julien Maffre abb05f7c78
Remove GHA SNP CI container builder (#5471)
2023-07-31 14:39:09 +01:00
..
README.md Allow for SNP/Virtual builds with no dependency on Open Enclave (#5308) 2023-05-30 11:50:18 +01:00
app_dev Update Dockerfiles to use Ubuntu MCR mirror (#5330) 2023-06-06 22:45:51 +01:00
app_run Update Dockerfiles to use Ubuntu MCR mirror (#5330) 2023-06-06 22:45:51 +01:00
ccf_ci Update Dockerfiles to use Ubuntu MCR mirror (#5330) 2023-06-06 22:45:51 +01:00
ccf_ci_built Remove GHA SNP CI container builder (#5471) 2023-07-31 14:39:09 +01:00
sgx_deps_pin.sh Container images release improvements for 3.0.0 (#4381) 2022-10-26 13:57:54 +00:00

README.md

Docker images for CCF

  • app_run: Builds the image containing all runtime dependencies for CCF, as well as the latest release of CCF (as per https://github.com/microsoft/CCF/releases/latest). To be used by CCF operators.
  • app_dev: Builds the image containing all build dependencies for CCF applications. To be used by CCF application developers.
  • ccf_ci: Builds the image containing all build dependencies for CCF itself. To be used by CCF contributors. It is also used by CCF Continuous Integration pipeline.
  • ccf_ci_built: Builds the image containing all build dependencies for CCF itself as well as CCF source and a build. To be used by CCF contributors. It is also used by CCF Continuous Integration pipeline.

To build a given image, run:

$ cd CCF/
$ docker build -t <tag> -f docker/<app_run|app_dev|ccf_ci> --build-arg="platform=<sgx|snp|virtual>" --build-arg="clang_version=<11|15>" .