BHAVIKBANKER/BERTopic_AG_final
1
1FROM python:3.10-slim2 3RUN apt-get update && apt-get install -y \4 build-essential \5 curl \6 && rm -rf /var/lib/apt/lists/*7 8RUN useradd -m -u 1000 user9USER user10ENV PATH="/home/user/.local/bin:${PATH}"11 12WORKDIR /app13 14COPY --chown=user requirements.txt .15RUN pip install --no-cache-dir --upgrade -r requirements.txt16 17COPY --chown=user . .18 19ENV PORT=786020EXPOSE 786021 22CMD ["python", "app.py"]23 