Kkk / Dockerfile
Pubgbc9799's picture
Create Dockerfile
0ba1994 verified
raw
history blame contribute delete
270 Bytes
FROM mcr.microsoft.com/playwright/python:v1.40.0-jammy
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
# Hugging Face को पोर्ट 7860 की ज़रूरत होती है
ENV PORT=7860
EXPOSE 7860
CMD ["python", "main.py"]