Files
google-mcp/Dockerfile

8 lines
108 B
Docker
Raw Normal View History

2025-05-14 10:46:01 -04:00
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]