File size: 544 Bytes
b842220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM python:3.9

# 1. Working Directory set karo
WORKDIR /code

# 2. Requirements copy aur install karo
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

# 3. User Permissions (Hugging Face Security ke liye zaroori)
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

# 4. App Code Setup
WORKDIR $HOME/app
COPY --chown=user . $HOME/app

# 5. Start Command (Unbuffered mode taake logs foran dikhein)
CMD ["python", "-u", "scraper.py"]