Files
patchy631--ai-engineering-hub/pixeltable-mcp/base-sdk/Dockerfile
T
2026-07-13 12:37:47 +08:00

18 lines
358 B
Docker

FROM python:3.10-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY server.py .
COPY tools.py .
# Expose the port the app runs on
EXPOSE 8080
# Command to run the application
CMD ["python", "server.py", "--host", "0.0.0.0", "--port", "8080"]