mirror of
https://github.com/hoshikawa2/agent_platform_oci.git
synced 2026-07-09 22:04:21 +00:00
10 lines
250 B
Docker
10 lines
250 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY app ./app
|
|
COPY config ./config
|
|
ENV PYTHONPATH=/app
|
|
EXPOSE 7000
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7000"]
|