kingame21/BioTech.ai
0
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"]