Updated index page + Added about and result pages

This commit is contained in:
2023-12-05 15:26:57 +01:00
parent 6d504394ef
commit e71d656d0e
11 changed files with 616 additions and 148 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.10.12
ADD . /stark-web
WORKDIR /stark-web
RUN pip install --upgrade pip
RUN pip install waitress
RUN pip install .
CMD ["waitress-serve", "--call", "app:app"]