2023-12-26 15:32:21 +01:00
|
|
|
FROM python:3.11
|
|
|
|
|
|
|
|
WORKDIR /usr/src/kabot
|
|
|
|
ENV CONFIG_FILE=/data/config.ini
|
|
|
|
COPY kabot ./
|
|
|
|
COPY config.ini.sample /data/config.ini
|
|
|
|
COPY entrypoint.sh /
|
2023-12-27 16:54:31 +01:00
|
|
|
RUN apt update && apt install -y ffmpeg
|
|
|
|
RUN apt clean
|
2023-12-26 15:32:21 +01:00
|
|
|
RUN pip install --no-cache-dir /usr/src/kabot/
|
|
|
|
|
|
|
|
CMD [ "/entrypoint.sh" ]
|