(feat): Initial work of admin panel
This commit is contained in:
commit
7ae9ef7478
11 changed files with 209 additions and 0 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue