mirror of
https://github.com/ianarawjo/ChainForge.git
synced 2025-03-14 16:26:45 +00:00
* Create a Dockerfile * Edit README.md to contain information about using Chainforge inside a container * Update Dockerfile to use python 3.10 as the base image --------- Co-authored-by: Rob-Powell <7034920+Rob-Powell@users.noreply.github.com>
8 lines
139 B
Docker
8 lines
139 B
Docker
FROM python:3.10-slim-bullseye
|
|
|
|
WORKDIR /chainforge
|
|
|
|
RUN pip install chainforge
|
|
|
|
ENTRYPOINT [ "chainforge", "serve", "--host", "0.0.0.0" ]
|