MohamedTry commited on
Commit
a3d9f29
·
verified ·
1 Parent(s): 3957394

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -0
Dockerfile ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use Python base image
2
+ FROM python:3.9
3
+
4
+ # Create non-root user
5
+ RUN useradd -m -u 1000 user
6
+ USER user
7
+ ENV PATH="/home/user/.local/bin:$PATH"
8
+
9
+ # Working directory
10
+ WORKDIR /app
11
+
12
+ # Install requirements first (to use Docker cache)
13
+ COPY --chown=user ./requirements.txt requirements.txt
14
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
15
+
16
+ # Copy the rest of the app
17
+ COPY --chown=user . /app
18
+
19
+ # Run FastAPI with uvicorn (port 7860 is required by Hugging Face Spaces)
20
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]