HellMBot/docker/Dockerfile

7 lines
260 B
Docker

FROM python:3.12.3-alpine3.19
RUN apk update && apk add python3 py3-pip
ENV DB_PATH="/etc/hellmbot/database.sqlite"
RUN pip install --extra-index-url https://git.orudo.ru/api/packages/trueold89/pypi/simple/ HellMBot
WORKDIR /etc/hellmbot
ENTRYPOINT ["hellm"]