We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c118284 commit fdeac86Copy full SHA for fdeac86
1 file changed
Dockerfile
@@ -40,11 +40,15 @@ RUN python3 -m pip install --no-cache-dir https://github.com/abetlen/llama-cpp-p
40
RUN sed -i '/llama_cpp_python/d' requirements.txt
41
RUN python3 -m pip install --no-cache-dir -r requirements.txt && python3 -m pip cache purge
42
43
+# Create an empty logs dir
44
+RUN mkdir logs
45
+
46
# Copy application files
47
COPY context_chat_backend context_chat_backend
48
COPY main.py .
49
COPY main_em.py .
50
COPY config.?pu.yaml .
51
+COPY logger_config.yaml .
52
COPY hwdetect.sh .
53
54
ENTRYPOINT [ "./dockerfile_scripts/entrypoint.sh" ]
0 commit comments