CoolFace
Apppublic

Manos21/Image_Classifier

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
Dockerfile26 linesDownload Raw Back to root
1 2FROM python:3.10-slim3 4# System dependencies5RUN apt-get update && apt-get install -y \6    build-essential \7    libgl1-mesa-glx \8    libglib2.0-0 \9    && rm -rf /var/lib/apt/lists/*10 11# Set workdir12WORKDIR /app13 14# Copy code15COPY . /app16 17# Install Python dependencies18RUN pip install --upgrade pip19RUN pip install -r requirements.txt20 21# Streamlit port22EXPOSE 786023 24# Run app25CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]26