initial commit

This commit is contained in:
Ultrablob 2025-01-22 11:11:36 -05:00
commit 402c449200
3 changed files with 72 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM python:alpine3.11
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "./main.py"]