FROM python:3.12-bookworm
EXPOSE 8080
COPY . /site
RUN pip install /site
ENTRYPOINT [ "launch-site" ]