This repository has been archived on 2022-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
KassouBot/Dockerfile
2021-05-13 09:23:49 +02:00

12 lines
221 B
Docker

FROM python:3.8.6-slim
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN apt update && \
apt install -y --no-install-recommends ffmpeg
COPY README.md .
COPY src .
CMD [ "python", "-u", "./main.py" ]