Updated visuals and expanded website.

This commit is contained in:
2024-02-19 15:33:19 +01:00
parent 42a3f773a9
commit 71de08ffed
18 changed files with 995 additions and 78 deletions

View File

@@ -1,8 +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 .
RUN pip install --upgrade pip && \
pip install waitress && \
pip install .
CMD ["waitress-serve", "--call", "app:create_app"]