Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/src/commit/8f6247d82160704a3cfb76262696957b27641e87/Dockerfile You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/Dockerfile

10 lines
93 B

FROM node:12.18-alpine
COPY . /app
WORKDIR /app
RUN yarn && \
yarn build
CMD yarn start