Gems234 commited on
Commit
e95747b
·
verified ·
1 Parent(s): 22d3b05

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -21
Dockerfile DELETED
@@ -1,21 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- # Installer les dépendances système nécessaires
6
- RUN apt-get update && apt-get install -y \
7
- build-essential \
8
- && rm -rf /var/lib/apt/lists/*
9
-
10
- # Copier les requirements d'abord
11
- COPY requirements.txt .
12
-
13
- # Installer avec les wheels précompilés
14
- RUN pip install --no-cache-dir \
15
- --find-links https://llama-cpp-python.github.io/llama-cpp-python/wheels/ \
16
- -r requirements.txt
17
-
18
- # Copier le reste du code
19
- COPY . .
20
-
21
- CMD ["python", "app.py"]