14 lines
272 B
Docker
14 lines
272 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 scripts/ ./scripts/
|
||
|
|
COPY server.py .
|
||
|
|
|
||
|
|
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8001"]
|