Alessio2405 commited on
Commit
f45f865
·
verified ·
1 Parent(s): 5c8d958

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -12
Dockerfile DELETED
@@ -1,12 +0,0 @@
1
- FROM python:3.9
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 ./mistral-7b-openorca.Q4_K_S.gguf /code/mistral-7b-openorca.Q4_K_S.gguf
10
- COPY ./main.py /code/main.py
11
-
12
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]