Skip to content

Commit

Permalink
Create initial dockerfile (langchain-ai#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra authored Sep 26, 2023
1 parent 2afe4ff commit 8e1706a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM python:3.11-buster

RUN pip install poetry==1.5.1

RUN poetry config virtualenvs.create false

COPY ./pyproject.toml ./poetry.lock* ./

RUN poetry install --no-interaction --no-ansi --no-root --no-directory

COPY ./*.py ./

RUN poetry install --no-interaction --no-ansi

CMD exec uvicorn main:app --reload --port 8080

0 comments on commit 8e1706a

Please sign in to comment.