dockerc – Docker image to static executable “compiler”

dockerc allows users to compile docker images into standalone portable binaries, eliminating the need for commands like docker run, pip install, or npm i. Simply give users executables to run! Users can install dockerc from the latest release and compile images from Docker Hub or local storage. The output binary can be used like any other executable, with options to specify environment variables, volumes, and more. Unique features include rootless containers, MacOS and Windows support using QEMU, x86_64, and arm64 support. Networked services inside the container can be accessed directly without -p. Skopeo is used for loading images. Build from source option is available with various customizable features.

https://github.com/NilsIrl/dockerc

To top