Add dockerfile template (#13240)

This commit is contained in:
langchain-infra
2023-11-13 10:33:01 -05:00
committed by GitHub
parent f70aa82c84
commit f55f67055f
2 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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