CoolFace
Apppublic

Fyfgfgfg/Web-Project-screenshot

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile27 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5# Install visible dependencies6COPY requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt8 9# Install additional processing libraries10RUN pip install --no-cache-dir python-telegram-bot>=20.711 12# Install Playwright Chromium + system deps13RUN playwright install --with-deps chromium14 15# Install fonts for better rendering16RUN apt-get update && apt-get install -y --no-install-recommends \17    fonts-noto fonts-noto-cjk fonts-noto-color-emoji fonts-liberation \18    && rm -rf /var/lib/apt/lists/*19 20# Copy application code21COPY . .22 23RUN chmod +x entrypoint.sh24 25EXPOSE 786026 27CMD ["bash", "entrypoint.sh"]