Skip to content

Commit

Permalink
F
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanture1064 committed Jan 24, 2024
1 parent 0986cea commit c3efa2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion deploy/evaluation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ RUN python -m pip install ragas langchain -i ${PYTHON_INDEX_URL}

# build ragas-once by source code
COPY ./pypi/ragas_once ./ragas_once
RUN python ./ragas_once/setup.py bdist_wheel -d /app/dist
WORKDIR /app/ragas_once
RUN python setup.py bdist_wheel -d /app/dist
RUN pip install dist/ragas_once-0.0.1-py3-none-any.whl
2 changes: 1 addition & 1 deletion pypi/ragas_once/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import find_packages, setup

with open("./README.md", "r", encoding="utf-8") as f:
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setup(
Expand Down

0 comments on commit c3efa2b

Please sign in to comment.