We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64df199 commit 0caf8c0Copy full SHA for 0caf8c0
Dockerfile
@@ -9,12 +9,15 @@ ENV NODE_ENV production
9
FROM python:3.9
10
RUN mkdir /app
11
COPY ./requirements.txt /app
12
+COPY ./chainfury /app/chainfury
13
+COPY pyproject.toml /app
14
+COPY README.md /app
15
16
# Setting up the working directory
17
WORKDIR /app
18
+RUN python3 -m pip install -e .
19
RUN python3 -m pip install -r requirements.txt
-RUN pip install --no-deps langflow==0.0.54
-RUN pip install --no-deps chainfury
20
+RUN python3 -m pip install --no-deps langflow==0.0.54
21
22
# Bundle app source
23
RUN rm -rf /app/static
conf.py
0 commit comments