Add discord bot, github pipelines

This commit is contained in:
mudler
2023-08-23 00:30:17 +02:00
parent 11514a0e0c
commit d32940e604
8 changed files with 728 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
FROM python:3.10-bullseye
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
ENTRYPOINT [ "python", "./main.py" ];