generate_dockerfile
Create Dockerfile templates tailored for specific programming languages and frameworks, streamlining container setup and deployment processes.
Instructions
Generate a Dockerfile template for a specific language/framework
Input Schema
Name | Required | Description | Default |
---|---|---|---|
framework | No | Framework-specific optimizations (e.g., alpine, express, fastapi) | |
language | Yes | Programming language for the Dockerfile |
Input Schema (JSON Schema)
{
"properties": {
"framework": {
"description": "Framework-specific optimizations (e.g., alpine, express, fastapi)",
"type": "string"
},
"language": {
"description": "Programming language for the Dockerfile",
"enum": [
"node",
"nodejs",
"javascript",
"typescript",
"python",
"java",
"go",
"rust"
],
"type": "string"
}
},
"required": [
"language"
],
"type": "object"
}