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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -11
Dockerfile CHANGED
@@ -1,21 +1,21 @@
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
  RUN useradd -m -u 1000 user
10
- USER user
11
- ENV HOME=/home/user \
12
- PATH=/home/user/.local/bin:$PATH
13
 
14
- WORKDIR $HOME/app
 
15
 
16
- COPY --chown=user . $HOME/app
 
17
 
18
- COPY ./codellama-7b-instruct.Q4_K_M.gguf /code/codellama-7b-instruct.Q4_K_M.gguf
19
- COPY ./main.py /code/main.py
20
 
21
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
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"]