Files
mcp-ics/pkg/Dockerfile
T
renovate 4a22a6b5bb
Docker Build and Push / build (pull_request) Successful in 3m14s
chore(deps): pin dependencies
2026-06-09 13:48:20 +00:00

21 lines
556 B
Docker

FROM docker.io/library/python:3.14-slim@sha256:c845af9399020c7e562969a13689e929074a10fd057acd1b1fad06a2fb068e97
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Set the working directory in the container
WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .
# Install dependencies using buildkit cache
RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
# Copy the source code
COPY src/ ./src/
# Command to run the MCP server
CMD ["python", "src/server.py"]