aniruddh1907 commited on
Commit
f4d54d5
·
verified ·
1 Parent(s): ae828b1

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -18
Dockerfile DELETED
@@ -1,18 +0,0 @@
1
- # Use Python 3.10 base
2
- FROM python:3.10-slim
3
-
4
- # Install system-level dependencies
5
- RUN apt-get update && apt-get install -y graphviz
6
-
7
- # Set working directory
8
- WORKDIR /code
9
-
10
- # Copy and install Python dependencies
11
- COPY requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- # Copy app files
15
- COPY . .
16
-
17
- # Run the app
18
- CMD ["python", "app.py"]