mirror of
https://github.com/hoshikawa2/agent_platform_oci.git
synced 2026-07-09 22:04:21 +00:00
7 lines
192 B
Docker
7 lines
192 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY main.py .
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8100"]
|