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

12 lines
256 B

# ass Dockerfile v0.3.3
# authors:
# - tycrek <t@tycrek.com> (https://tycrek.com/)
# - Zusier <zusier@pm.me> (https://github.com/Zusier)
FROM node:20.9.0-alpine
WORKDIR /opt/ass-src/
COPY . ./
RUN npm i -g pnpm
RUN pnpm i
RUN npm run build
CMD npm start