ericjedha commited on
Commit
1b722cb
·
verified ·
1 Parent(s): e01b30a

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- # Installer ffmpeg et dépendances système
4
- RUN apt-get update && apt-get install -y \
5
- ffmpeg \
6
- && rm -rf /var/lib/apt/lists/*
7
-
8
- # Installer les dépendances Python
9
- COPY requirements.txt .
10
- RUN pip install --no-cache-dir -r requirements.txt
11
-
12
- # Copier le code
13
- COPY . /app
14
- WORKDIR /app
15
-
16
- # Lancer l'appli
17
- CMD ["python", "app.py"]