STARK-web/Dockerfile

9 lines
181 B
Docker
Raw Normal View History

FROM python:3.10.12
ADD . /stark-web
WORKDIR /stark-web
RUN pip install --upgrade pip
RUN pip install waitress
RUN pip install .
2023-12-06 15:35:15 +00:00
CMD ["waitress-serve", "--call", "app:create_app"]