TD-jayadeera commited on
Commit
ffcf5fa
·
verified ·
1 Parent(s): fa5d07d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -11,8 +11,7 @@ RUN apt-get update && apt-get install -y \
11
  COPY ./requirements.txt /code/requirements.txt
12
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
 
14
- # GGUF මාදිලිය සහ app.py copy කීම
15
- COPY ./llama3-sinhala.Q4_K_M.gguf /code/llama3-sinhala.Q4_K_M.gguf
16
  COPY ./app.py /code/app.py
17
 
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
11
  COPY ./requirements.txt /code/requirements.txt
12
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
 
14
+ # app.py පමණක් copy කරයි
 
15
  COPY ./app.py /code/app.py
16
 
17
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]