enesmanan commited on
Commit
375fc31
·
verified ·
1 Parent(s): 295790e

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -16
Dockerfile DELETED
@@ -1,16 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- # Chrome ve ChromeDriver kurulumu
6
- RUN apt-get update && apt-get install -y \
7
- chromium \
8
- chromium-driver \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- COPY requirements.txt .
12
- RUN pip install -r requirements.txt
13
-
14
- COPY . .
15
-
16
- CMD ["python", "app.py"]