Added Docker Stuff + Rearranged Files and Folders
This commit is contained in:
11
Dockerfiles/Dockerfile
Normal file
11
Dockerfiles/Dockerfile
Normal 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" ]
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
# haider-bot
|
# haider-bot
|
||||||
|
|
||||||
Der Haider Bot für Discord
|
Der Haider Bot für Discord
|
||||||
|
|
||||||
|
|||||||
8
docker-compose.yml
Normal file
8
docker-compose.yml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfiles/Dockerfile
|
||||||
|
container_name: winglbot
|
||||||
|
restart: always
|
||||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
hikari
|
||||||
|
hikari-lightbulb
|
||||||
Reference in New Issue
Block a user