The images are free to use without limitations under the open-source program;
FROM lthn/build:server as build
RUN git submodule update --init --force --depth 1
RUN make
FROM scratch as export-image
COPY --chmod=0777 --from=builder build/release/bin/ /
Run the above Dockerfile using the -o flag to export the 'export-image' stage to your local directory.
docker build -o artifacts .
Content type
Image
Digest
sha256:c256f78a7…
Size
245.7 MB
Last updated
7 months ago
docker pull lthn/build:php-8.4