mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
Docker Swarm management terminal for container orchestration. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
239 B
Docker
17 lines
239 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application
|
|
COPY . .
|
|
|
|
# Expose port
|
|
EXPOSE 5000
|
|
|
|
# Run the application
|
|
CMD ["python", "app.py"]
|