Add preference for signal notifications to bot setup screen

This commit is contained in:
Darren Clarke 2026-01-28 14:46:34 +01:00
parent 38efae02d4
commit d93797172a
10 changed files with 1232 additions and 1214 deletions

View file

@ -42,10 +42,11 @@ RUN corepack enable && corepack prepare pnpm@9.15.4 --activate
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get install -y --no-install-recommends \
dumb-init
RUN mkdir -p ${APP_DIR}
RUN chown -R node ${APP_DIR}/
RUN mkdir -p ${APP_DIR} /pnpm
RUN chown -R node ${APP_DIR}/ /pnpm
USER node
RUN corepack prepare pnpm@9.15.4 --activate
WORKDIR ${APP_DIR}
COPY --from=installer ${APP_DIR} ./
USER root