Added missing files due to gitignore

This commit is contained in:
Matthew Grotke 2026-05-17 03:37:26 -04:00
parent b0994069ad
commit 575edc836d
9 changed files with 208 additions and 422 deletions

View file

@ -0,0 +1,7 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/*.py .
EXPOSE 25327
CMD ["python", "main.py"]