mirror of
https://github.com/katanemo/plano.git
synced 2026-05-15 11:02:39 +02:00
* commiting my hr_agent branch * updating the HR agent config * pushing to remote * fix hr agent * committing to merge with main * updating to merge from main * updating the demo and model-server-tests to pull from poetry * updating the poetry.lock files * updating based on feedback * updated sysmte prompt for hr_agent --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local> Co-authored-by: Adil Hafeez <adil@katanemo.com>
20 lines
395 B
Docker
20 lines
395 B
Docker
FROM python:3.10 AS base
|
|
|
|
FROM base AS builder
|
|
|
|
WORKDIR /src
|
|
|
|
COPY requirements.txt /src/
|
|
COPY workforce_data.json /src/
|
|
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
|
|
|
|
COPY . /src
|
|
|
|
FROM python:3.10-slim AS output
|
|
|
|
COPY --from=builder /runtime /usr/local
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80", "--log-level", "info"]
|