add dockerfile and gitea build action
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m55s

This commit is contained in:
2025-07-11 20:33:11 -04:00
parent ba573ccea1
commit 94582d5f38
2 changed files with 53 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.13.5-alpine3.22
COPY ./app /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "/app/main.py"]