# Biohazard VFX Website - Docker Build Directory Structure ``` biohazard-vfx/ ├── Dockerfile ├── .dockerignore ├── docker-compose.yml ├── .github/ │ └── workflows/ │ ├── docker.yml │ └── docker-hub.yml ├── scripts/ │ └── build-and-push.sh └── README.md (updated with Docker instructions) ``` This structure provides multiple ways to build and deploy your Docker image: 1. **Manual builds** using the Dockerfile directly 2. **Docker Compose** for local development and testing 3. **GitHub Actions** for automated builds to GHCR or Docker Hub 4. **Manual script** for custom registry deployments