STARK-web/Dockerfile

9 lines
191 B
Docker

FROM python:3.10.12
ADD . /stark-web
WORKDIR /stark-web
RUN pip install --upgrade pip && \
pip install waitress && \
pip install .
CMD ["waitress-serve", "--call", "app:create_app"]