feat(runtime): sync experience bus and learner stack into main
This commit is contained in:
12
services/experience-learner/Dockerfile
Normal file
12
services/experience-learner/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY main.py .
|
||||
|
||||
EXPOSE 9109
|
||||
|
||||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "9109"]
|
||||
Reference in New Issue
Block a user