huuuu / Dockerfile
jammss's picture
Create Dockerfile
0f49879 verified
raw
history blame
254 Bytes
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"]