hArshi07 commited on
Commit
c22aa58
·
verified ·
1 Parent(s): 667522b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -14
Dockerfile CHANGED
@@ -1,21 +1,12 @@
1
  FROM python:3.10
2
- WORKDIR /code
3
-
4
- # Install dependencies
5
- COPY requirements.txt /code/requirements.txt
6
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
7
 
8
- # Create user
9
- RUN useradd -m -u 1000 user
10
 
11
- # Set environment variables
12
- userENV HOME=/home/user PATH=/home/user/.local/bin:$PATH
13
 
14
- # Copy application code and model (assuming code expects it in /code)
15
- COPY requirements.txt main.py codellama-7b-instruct.Q4_K_M.gguf /code/
16
 
17
- # Set working directory (optional, since already set)
18
- # WORKDIR $HOME/app # Uncomment if needed
19
 
20
- # Start the application
21
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  FROM python:3.10
 
 
 
 
 
2
 
3
+ WORKDIR /code
 
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
 
6
 
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
8
 
9
+ COPY ./codellama-7b-instruct.Q4_K_M.gguf /code/codellama-7b-instruct.Q4_K_M.gguf
10
+ COPY ./main.py /code/main.py
11
 
 
12
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]