TacoManAI commited on
Commit
f760dc4
·
verified ·
1 Parent(s): b7c630f

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -23
Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- # 1. Start with a lightweight Linux image that has Python
2
- FROM python:3.10-slim
3
-
4
- # 2. Set the working directory inside the container
5
- WORKDIR /app
6
-
7
- # 3. Install system dependencies (needed for llama-cpp)
8
- RUN apt-get update && apt-get install -y \
9
- build-essential \
10
- && rm -rf /var/lib/apt/lists/*
11
-
12
- # 4. Copy your requirements file and install them
13
- COPY requirements.txt .
14
- RUN pip install --no-cache-dir -r requirements.txt
15
-
16
- # 5. Copy your application code
17
- COPY . .
18
-
19
- # 6. Expose the port your FastAPI app uses
20
- EXPOSE 7860
21
-
22
- # 7. Command to run your app
23
- CMD ["python", "app.py"]