Files
metabuilder/dockerterminal/backend/Dockerfile
johndoe6345789 fdd2a30b77 feat: Add Docker Swarm terminal application
Docker Swarm management terminal for container orchestration.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:03:12 +00:00

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"]