16 lines
285 B
Docker
16 lines
285 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application code
|
|
COPY . .
|
|
|
|
# Render sets PORT env var (default 10000)
|
|
EXPOSE 10000
|
|
|
|
CMD uvicorn main:app --host 0.0.0.0 --port ${PORT:-10000}
|