Tim Luka Horstmann commited on
Commit
e2ff2dd
·
1 Parent(s): 6719b2d

Fixed copy

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -38,6 +38,9 @@ RUN git clone --recursive https://github.com/abetlen/llama-cpp-python.git /tmp/l
38
  && python -m pip install --no-cache-dir . \
39
  && rm -rf /tmp/llama-cpp-python
40
 
 
 
 
41
  # Expose the port your FastAPI app runs on
42
  EXPOSE 7860
43
 
 
38
  && python -m pip install --no-cache-dir . \
39
  && rm -rf /tmp/llama-cpp-python
40
 
41
+ # Copy application code and data
42
+ COPY llm_server.py ./
43
+
44
  # Expose the port your FastAPI app runs on
45
  EXPOSE 7860
46