Skip to content

Commit a4c6eed

Browse files
committed
Optional prompt-guide for CI
1 parent c74d7f4 commit a4c6eed

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

server/installer/sandbox/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ RUN python -c "from langchain_community.embeddings import FastEmbedEmbeddings; F
1212
# Copy application code
1313
COPY code_generator.py .
1414
COPY stats_report.py .
15-
COPY prompt-guide.txt prompt-guide.txt.example ./
15+
COPY prompt-guide.txt.example ./
16+
# prompt-guide.txt is optional (local customization); fall back to example if absent
17+
RUN if [ ! -f prompt-guide.txt ]; then cp prompt-guide.txt.example prompt-guide.txt; fi
1618

1719
# Create directories for generated code, ChromaDB, and cache
1820
RUN mkdir -p /app/generated /app/chroma_db /app/cache

0 commit comments

Comments
 (0)