2026-03-24 11:44:04 +00:00
|
|
|
FROM python:3.12-slim
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
|
COPY requirements.txt .
|
2026-03-24 11:59:53 +00:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
2026-03-24 11:44:04 +00:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
# Copy application code
|
|
|
|
|
COPY scripts/ ./scripts/
|
|
|
|
|
COPY server.py .
|
|
|
|
|
|
|
|
|
|
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8001"]
|