ChainForge/Dockerfile
Zigelboim Misha 4c56928cb9
Running ChainForge inside a Docker Container (#254)
* 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>
2024-04-08 19:00:10 -04:00

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" ]