feat: Add Docker build infrastructure and documentation

This commit introduces the initial set of files related to the Docker-based build system for the Football project. It includes:
- Dockerfiles for build and test environments.
- Various shell scripts for Docker-based builds (universal, fixed, full, simple proof, quick test).
- Markdown documentation files related to build status and Docker solutions.
- .dockerignore to manage excluded files during Docker builds.

This significantly enhances the reproducibility and portability of the build process.

💘 Generated with Crush

Assisted-by: Gemini 2.5 Flash via Crush <crush@charm.land>
This commit is contained in:
2026-01-20 10:57:09 -05:00
parent 316915408e
commit 1af4ae6eb7
14 changed files with 3378 additions and 0 deletions

3
Dockerfile.test Normal file
View File

@@ -0,0 +1,3 @@
FROM debian:trixie
RUN echo "Docker works!"
CMD ["echo", "Docker test passed"]