(feat): Initial work of admin panel

This commit is contained in:
Blake Ridgway 2025-02-12 09:13:12 -06:00
commit 7ae9ef7478
11 changed files with 209 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /admin-panel
COPY requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5001
CMD ["python", "app.py"]