stockdocs-mcp/Dockerfile
Jarian Cottingham e977b052b9 Initial commit: StockDocs data API server
Carved out from the StockDocs monorepo. Flask API over the
ChromaDB vector store and article corpus with OpenAPI spec.
2026-08-21 18:33:59 +00:00

21 lines
411 B
Docker

# Use an official Python runtime as a base image
FROM python:3.12.3-slim
# Set the working directory in the container
WORKDIR /app
# Install Dependencies
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
# Copy the current directory contents into the container at /app
COPY . /app
# Expose the port the app runs on
EXPOSE 5005
# Run the Flask app
CMD ["python", "server.py"]