YouTube / Dockerfile
Akwbw's picture
Create Dockerfile
924bf71 verified
raw
history blame contribute delete
201 Bytes
FROM python:3.9
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Port 7860 open karna zaroori hai HF ke liye
EXPOSE 7860
CMD ["python", "app.py"]