1
0
Fork 0
taleweave-ai/Dockerfile

13 lines
307 B
Docker
Raw Permalink Normal View History

2024-05-19 19:17:09 +00:00
FROM python:3.10
WORKDIR /taleweave
COPY requirements/base.txt /taleweave/requirements/base.txt
RUN pip install --no-cache-dir -r requirements/base.txt
COPY taleweave/ /taleweave/taleweave/
2024-06-01 09:52:14 +00:00
COPY prompts/ /taleweave/prompts/
COPY config.yaml /taleweave/config.yaml
2024-05-19 19:17:09 +00:00
CMD ["python", "-m", "taleweave.main"]