JavaScript appears to be disabled on your web browser, some functions may not work such as opening menus.
SudoVanilla Ark
Ark
FROM ark.sudovanilla.org/korbs/nodejs:alpine AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run translate
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=1930
EXPOSE 1930
CMD node ./dist/server/entry.mjs