FROM python:3.9 WORKDIR /app RUN apt-get update && apt-get install -y git RUN git clone https://github.com/modenwenda/Telegram-Chatbot-Gpt4Free RUN pip install hnswlib RUN pip install --no-cache-dir -r requirements.txt EXPOSE 80 CMD ["python", "main.py"]