mcp_server_test / Dockerfile
WebashalarForML's picture
Update Dockerfile
9b11b37 verified
raw
history blame contribute delete
270 Bytes
FROM python:3.11-slim
WORKDIR /app
# Copy your code and resources
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the HF default port
EXPOSE 7860
# Run the server on port 7860
CMD ["python", "server.py", "--port", "7860"]