We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74d7f4 commit a4c6eedCopy full SHA for a4c6eed
1 file changed
server/installer/sandbox/Dockerfile
@@ -12,7 +12,9 @@ RUN python -c "from langchain_community.embeddings import FastEmbedEmbeddings; F
12
# Copy application code
13
COPY code_generator.py .
14
COPY stats_report.py .
15
-COPY prompt-guide.txt prompt-guide.txt.example ./
+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
18
19
# Create directories for generated code, ChromaDB, and cache
20
RUN mkdir -p /app/generated /app/chroma_db /app/cache
0 commit comments