in dockerfiles.py [0:0]
def create_jinja_environment() -> Environment:
"""
Create and return a Jinja2 environment configured for file system loading and autoescaping.
Returns:
Environment: The configured Jinja2 environment.
"""
return Environment(
loader=FileSystemLoader("."),
autoescape=select_autoescape()
)