Skip to content

Commit 0caf8c0

Browse files
committed
fix: dockerfile now installs chainfury frmo source
1 parent 64df199 commit 0caf8c0

File tree

2 files changed

+5
-30
lines changed

2 files changed

+5
-30
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ ENV NODE_ENV production
99
FROM python:3.9
1010
RUN mkdir /app
1111
COPY ./requirements.txt /app
12+
COPY ./chainfury /app/chainfury
13+
COPY pyproject.toml /app
14+
COPY README.md /app
1215

1316
# Setting up the working directory
1417
WORKDIR /app
18+
RUN python3 -m pip install -e .
1519
RUN python3 -m pip install -r requirements.txt
16-
RUN pip install --no-deps langflow==0.0.54
17-
RUN pip install --no-deps chainfury
20+
RUN python3 -m pip install --no-deps langflow==0.0.54
1821

1922
# Bundle app source
2023
RUN rm -rf /app/static

conf.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)