Spaces:
Build error
Build error
Update Dockerfile
Browse files- 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 |
-
|
9 |
-
RUN useradd -m -u 1000 user
|
10 |
|
11 |
-
|
12 |
-
userENV HOME=/home/user PATH=/home/user/.local/bin:$PATH
|
13 |
|
14 |
-
|
15 |
-
COPY requirements.txt main.py codellama-7b-instruct.Q4_K_M.gguf /code/
|
16 |
|
17 |
-
|
18 |
-
|
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"]
|