Skip to content

Commit fe803da

Browse files
authored
Merge pull request #6 from droq-ai/0x3bfc/fix/nodes-loading
fix: node loading from node.json
2 parents 7435f2f + 8befaf2 commit fe803da

File tree

3 files changed

+84
-398
lines changed

3 files changed

+84
-398
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ RUN --mount=type=cache,target=/root/.cache/uv \
6969
# Copy executor node source
7070
COPY src/node /app/node/src
7171

72-
# Copy components.json mapping file
73-
COPY components.json /app/components.json
72+
# Copy node.json mapping file
73+
COPY node.json /app/node.json
7474

7575
################################
7676
# RUNTIME STAGE
@@ -99,7 +99,7 @@ COPY --from=builder /usr/local/bin /usr/local/bin
9999
# Copy application code
100100
COPY --from=builder --chown=executor:root /app/node/src /app/src
101101
COPY --from=builder --chown=executor:root /app/lfx/src /app/src/lfx/src
102-
COPY --from=builder --chown=executor:root /app/components.json /app/components.json
102+
COPY --from=builder --chown=executor:root /app/node.json /app/node.json
103103

104104
# Set environment variables
105105
ENV PYTHONPATH=/app/src:/app/src/lfx/src

0 commit comments

Comments
 (0)