STARK-web/Dockerfile

9 lines
191 B
Docker
Raw Normal View History

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