arittrabag commited on
Commit
6f6e817
·
verified ·
1 Parent(s): 5c5b32d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +24 -0
Dockerfile ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ # Install libGL for OpenCV
4
+ RUN apt-get update && apt-get install -y libgl1 && rm -rf /var/lib/apt/lists/*
5
+
6
+ # Create a non-root user
7
+ RUN useradd -m -u 1000 user
8
+ USER user
9
+
10
+ # Ensure pip install path is in PATH
11
+ ENV PATH="/home/user/.local/bin:$PATH"
12
+
13
+ # Set working directory
14
+ WORKDIR /app
15
+
16
+ # Install Python deps
17
+ COPY --chown=user requirements.txt .
18
+ RUN pip install --no-cache-dir -r requirements.txt
19
+
20
+ # Copy app code
21
+ COPY --chown=user . /app
22
+
23
+ # Start FastAPI using uvicorn
24
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]