SaniaE commited on
Commit
8f6f2d9
·
verified ·
1 Parent(s): 9abcde9

added dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +25 -0
Dockerfile ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use an official Python base image
2
+ FROM python:3.10-slim
3
+
4
+ # Set up a new user named "user" with user ID 1000
5
+ # Hugging Face Spaces requires the container to run with UID 1000
6
+ RUN useradd -m -u 1000 user
7
+ USER user
8
+ ENV HOME=/home/user \
9
+ PATH=/home/user/.local/bin:$PATH
10
+
11
+ # Set the working directory
12
+ WORKDIR $HOME/app
13
+
14
+ # Copy the requirements file into the container
15
+ COPY --chown=user requirements.txt .
16
+
17
+ # Install dependencies
18
+ # --no-cache-dir keeps the image size small
19
+ RUN pip install --no-cache-dir --upgrade pip && \
20
+ pip install --no-cache-dir -r requirements.txt
21
+
22
+ # Copy the rest of your application code
23
+ COPY --chown=user . .
24
+
25
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]