srtbot78 / Dockerfile
waigyi's picture
Update Dockerfile
4aed8f3 verified
raw
history blame contribute delete
775 Bytes
# ၁။ Python Image
FROM python:3.9-slim
# ၂။ Root ထနေနဲ့ α€‘α€›α€„α€Ία€•α€Όα€„α€Ία€†α€„α€Ία€™α€šα€Ί
USER root
WORKDIR /app
# ၃။ α€œα€­α€―α€‘α€•α€Ία€α€¬α€α€½α€± α€žα€½α€„α€Ία€Έα€™α€šα€Ί
RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
# ၄။ ဖိုင်တွေကို α€€α€°α€Έα€™α€šα€Ί
COPY . /app
# ၅။ Library တွေ α€žα€½α€„α€Ία€Έα€™α€šα€Ί
RUN pip install --no-cache-dir -r requirements.txt
# ၆။ Hugging Face User Permission α€•α€±α€Έα€™α€šα€Ί
RUN useradd -m -u 1000 user && \
chown -R user:user /app
USER user
# ၇။ Port α€”α€²α€· Run α€™α€Šα€·α€Ί Command (မင်းရဲ့ main.py α€€α€­α€― α€α€±α€«α€Ία€‘α€¬α€Έα€•α€«α€α€šα€Ί)
EXPOSE 7860
CMD ["python", "main.py"]