1
0
Fork 0

add container and missing deps

This commit is contained in:
Sean Sube 2024-05-19 14:17:09 -05:00
parent 83731e6814
commit d894055973
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
3 changed files with 41 additions and 1 deletions

13
.dockerignore Normal file
View File

@ -0,0 +1,13 @@
**/__pycache__/
**/datasets/
dist/
venv/
*.egg-info/
*.env
*.log
*.swp
.coverage
coverage.xml
index.html

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM python:3.10
WORKDIR /taleweave
# COPY requirements/cpu.txt /taleweave/requirements/cpu.txt
# RUN pip install --no-cache-dir -r requirements/cpu.txt
COPY requirements/base.txt /taleweave/requirements/base.txt
RUN pip install --no-cache-dir -r requirements/base.txt
RUN pip install --no-cache-dir --index-url https://test.pypi.org/simple/ packit_llm==0.1.0
COPY adventure/ /taleweave/adventure/
CMD ["python", "-m", "adventure.main"]

View File

@ -1,6 +1,19 @@
coloredlogs==15.0.1
discord.py==2.3.2
fnvhash==0.1.0
graphviz==0.20.3
Jinja2==3.1.3
langchain-community==0.0.36
langchain-core==0.1.50
packit-llm==0.1.0
mistletoe==1.3.0
numpy==1.26.4
# packit-llm==0.1.0
pillow==10.3.0
pydantic==2.7.1
pydantic_core==2.18.2
pyee==11.1.0
python-dotenv==1.0.1
PyYAML==6.0.1
rule-engine==4.4.0
websocket-client==1.8.0
websockets==12.0