automated terminal push

This commit is contained in:
2025-04-30 07:38:19 -04:00
committed by Software Shinobi
parent bff195d5fe
commit 5bfbd57097
25 changed files with 822 additions and 7 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3-bookworm
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["flask", "run", "--host=0.0.0.0"]