euler314 commited on
Commit
297d891
·
verified ·
1 Parent(s): 5504936

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -25
Dockerfile DELETED
@@ -1,25 +0,0 @@
1
- # Dockerfile
2
-
3
- # Base image: lightweight Python 3.9
4
- FROM python:3.9-slim
5
-
6
- # Install system packages if needed (none strictly required here)
7
- RUN apt-get update && apt-get install -y --no-install-recommends \
8
- gcc \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- # Set work directory
12
- WORKDIR /app
13
-
14
- # Copy requirements and install
15
- COPY requirements.txt .
16
- RUN pip install --no-cache-dir -r requirements.txt
17
-
18
- # Copy our application code
19
- COPY app.py .
20
-
21
- # Expose port 7860 (Gradio + Flask)
22
- EXPOSE 7860
23
-
24
- # Launch the combined Flask + Gradio server
25
- CMD ["python", "app.py"]