CoolFace
Apppublic

CoderLakshman/Final_Assignment_Template

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile27 linesDownload Raw Back to root
1FROM python:3.112 3WORKDIR /app4 5# system deps6RUN apt-get update && apt-get install -y \7    git \8    git-lfs \9    ffmpeg \10    libsm6 \11    libxext6 \12    libgl1 \13    && rm -rf /var/lib/apt/lists/* \14    && git lfs install15 16# copy files17COPY . .18 19# install python deps20RUN pip install --no-cache-dir --upgrade pip21RUN pip install --no-cache-dir -r requirements.txt22 23# expose gradio port24EXPOSE 786025 26# run app27CMD ["python", "app.py"]