Skip to content

Commit

Permalink
feat: add user image for direct and isolated script execution
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed May 8, 2024
1 parent c9940c7 commit 19d45a9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Build the image - docker build . -t composio/user
# Run a script using the image
# Say you have a script called agents/github.py
# You can execute this script using - docker run -v ./agents:/app:Z composio/user github.py

FROM python:3.10-slim-bullseye

VOLUME [ "/app" ]

WORKDIR /app

RUN python -m pip install composio-core==0.2.52

RUN python -m pip install composio-autogen==0.2.52

# RUN python -m pip install composio-claude==0.2.47 # Not published yet

RUN python -m pip install composio-crewai==0.2.52

# RUN python -m pip install composio-griptape==0.2.47 # Not published yet

RUN python -m pip install composio-julep==0.2.52

RUN python -m pip install composio-langchain==0.2.52

RUN python -m pip install composio-lyzr==0.2.52

RUN python -m pip install composio-openai==0.2.52

ENTRYPOINT [ "python" ]

0 comments on commit 19d45a9

Please sign in to comment.