neerajkalyank commited on
Commit
ee8c488
1 Parent(s): fc4e704

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -12
Dockerfile DELETED
@@ -1,12 +0,0 @@
1
- # Use an official Python slim image
2
- FROM python:3.10-slim
3
-
4
- # Install Python dependencies
5
- COPY requirements.txt .
6
- RUN pip install -r requirements.txt
7
-
8
- # Copy the application code
9
- COPY . .
10
-
11
- # Run the Gradio app
12
- CMD ["python3", "app.py"]