mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
22 lines
377 B
Docker
22 lines
377 B
Docker
FROM python:3.11-slim
|
|
|
|
RUN pip install poetry==1.6.1
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
WORKDIR /code
|
|
|
|
COPY ./pyproject.toml ./poetry.lock* ./
|
|
|
|
COPY ./packages ./packages
|
|
|
|
RUN poetry install --no-interaction --no-ansi --no-root
|
|
|
|
COPY ./app ./app
|
|
|
|
RUN poetry install --no-interaction --no-ansi
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD exec uvicorn app.server:app --host 0.0.0.0 --port 8080
|