Little bugfix
- Update Dockerfile - Fix docker-compose.yml - Fix setup.py
This commit is contained in:
parent
6977bd58a0
commit
34088a2107
|
@ -1,6 +1,5 @@
|
|||
FROM alpine:latest
|
||||
RUN apk update && apk add python3 py3-pip
|
||||
FROM python:3.12.3-alpine3.19
|
||||
ENV DB_PATH="/etc/hellmbot/database.sqlite"
|
||||
RUN pip install --extra-index-url https://git.orudo.ru/api/packages/trueold89/pypi/simple/ HellMBot --break-system-packages
|
||||
RUN pip install --extra-index-url https://git.orudo.ru/api/packages/trueold89/pypi/simple/ HellMBot
|
||||
WORKDIR /etc/hellmbot
|
||||
ENTRYPOINT ["hellm"]
|
||||
ENTRYPOINT ["hellm"]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
services:
|
||||
qbitdl_bot:
|
||||
hellm_bot:
|
||||
image: git.orudo.ru/trueold89/hellmbot:latest
|
||||
container_name: HellMBot
|
||||
volumes:
|
||||
|
@ -7,4 +7,6 @@ services:
|
|||
restart: 'unless-stopped'
|
||||
environment:
|
||||
BOT_TOKEN: "insertyourbottokenhere"
|
||||
CLIENT_ID: "insertyourclientidhere"
|
||||
CLIENT_ID: "insertyourclientidhere"
|
||||
volumes:
|
||||
hellm_db:
|
||||
|
|
Loading…
Reference in New Issue