init: initial commit

This commit is contained in:
Strix 2025-04-09 23:59:52 +02:00
commit d4496a2eda
8 changed files with 120 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["python", "main.py"]