ubot1 / Dockerfile
sahanind's picture
Upload 96 files
e7ef6c8 verified
raw
history blame
191 Bytes
FROM python:3.9
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install ffmpeg -y
WORKDIR .
COPY . .
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3", "bot.py"]