Implemented Docker usage and added Support for user

This commit is contained in:
2023-12-23 20:48:54 +01:00
parent e72ac76b2c
commit f9ea20bc14
2 changed files with 63 additions and 27 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.10
LABEL authors="jmueller"
RUN pip install py-cord mariadb python-dotenv
ADD main.py .
CMD ["python", "./main.py"]