broadfield-dev commited on
Commit
48c6364
·
verified ·
1 Parent(s): c66bf1b

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- WORKDIR /app
4
-
5
- # Install system dependencies
6
- RUN apt-get update && apt-get install -y \
7
- git \
8
- && rm -rf /var/lib/apt/lists/*
9
-
10
- # Install Python dependencies
11
- COPY requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- # Copy application code
15
- COPY app.py .
16
-
17
- # Expose port
18
- EXPOSE 7860
19
-
20
- CMD ["python", "app.py"]