11 lines
223 B
Docker
11 lines
223 B
Docker
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 /
|
|
|
|
RUN pip install --no-cache-dir /usr/src/kabot/
|
|
|
|
CMD [ "/entrypoint.sh" ]
|