mirror of
https://github.com/hoshikawa2/agent_platform_oci.git
synced 2026-07-09 22:04:21 +00:00
First commit
This commit is contained in:
7
apps/ai_gateway/Dockerfile
Normal file
7
apps/ai_gateway/Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM python:3.11-slim
|
||||
WORKDIR /app
|
||||
COPY apps/ai_gateway/requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir -r /app/requirements.txt
|
||||
COPY apps/ai_gateway /app
|
||||
EXPOSE 9100
|
||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9100"]
|
||||
Reference in New Issue
Block a user