CoolFace
Apppublic

kingame21/BioTech.ai

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
Dockerfile14 linesDownload Raw Back to root
1FROM python:3.11-slim2WORKDIR /app3 4RUN apt-get update && apt-get install -y \5    libgl1 libglib2.0-0 libgomp1 \6    && rm -rf /var/lib/apt/lists/*7 8COPY requirements.txt .9RUN pip install --no-cache-dir -r requirements.txt10 11COPY . .12EXPOSE 786013ENV PORT=786014CMD ["python", "app.py"]