Added Docker Stuff + Rearranged Files and Folders

This commit is contained in:
Discord Bot
2023-03-08 15:56:23 +00:00
parent 2704e92ba9
commit d5e009714e
9 changed files with 23 additions and 1 deletions

11
Dockerfiles/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY code /app
ENTRYPOINT [ "python", "wingl.py" ]

View File

@@ -1,3 +1,4 @@
# haider-bot
Der Haider Bot für Discord

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
version: "3"
services:
app:
build:
context: .
dockerfile: Dockerfiles/Dockerfile
container_name: winglbot
restart: always

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
hikari
hikari-lightbulb