NikhilN007 commited on
Commit
e2ff94c
·
1 Parent(s): 8641e86

Update Dockerfile for HF Spaces with user permissions and add .dockerignore

Browse files
Files changed (2) hide show
  1. .dockerignore +11 -0
  2. Dockerfile +10 -10
.dockerignore ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .git
2
+ .venv
3
+ __pycache__
4
+ *.pyc
5
+ *.pyo
6
+ *.pyd
7
+ .pytest_cache
8
+ .coverage
9
+ .env
10
+ start.sh
11
+ render.yaml
Dockerfile CHANGED
@@ -1,16 +1,16 @@
1
- FROM python:3.11-slim
 
2
 
3
- WORKDIR /app
4
 
5
- # Copy requirements and install dependencies
6
- COPY requirements.txt .
7
- RUN pip install --no-cache-dir -r requirements.txt
8
 
9
- # Copy application code
10
- COPY . .
11
 
12
- # Expose Hugging Face Spaces port
13
- EXPOSE 7860
14
 
15
- # Run the application
16
  CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ # Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
 
4
+ FROM python:3.11
5
 
6
+ RUN useradd -m -u 1000 user
7
+ USER user
8
+ ENV PATH="/home/user/.local/bin:$PATH"
9
 
10
+ WORKDIR /app
 
11
 
12
+ COPY --chown=user ./requirements.txt requirements.txt
13
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
+ COPY --chown=user . /app
16
  CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "7860"]