VINU NAYAK commited on
Commit
d6a51d0
·
verified ·
1 Parent(s): 3c42316

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -27
Dockerfile DELETED
@@ -1,27 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- # Install system dependencies
6
- RUN apt-get update && apt-get install -y \
7
- build-essential \
8
- libgl1-mesa-glx \
9
- libglib2.0-0 \
10
- && rm -rf /var/lib/apt/lists/*
11
-
12
- # Set environment variables to avoid Numba issues
13
- ENV NUMBA_DISABLE_JIT=1
14
- ENV PYTHONUNBUFFERED=1
15
-
16
- # Install dependencies
17
- COPY requirements.txt .
18
- RUN pip install --no-cache-dir -r requirements.txt
19
-
20
- # Copy application code
21
- COPY . .
22
-
23
- # Expose the port
24
- EXPOSE 7860
25
-
26
- # Start the application with the main version directly
27
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]