Update Dockerfiles, add signal api generated outputs

This commit is contained in:
Darren Clarke 2024-06-05 10:06:41 +02:00
parent 31da4b0e62
commit 83653ef23b
65 changed files with 6728 additions and 21 deletions

View file

@ -6,7 +6,7 @@ RUN mkdir -p ${APP_DIR}/
RUN npm i -g turbo
WORKDIR ${APP_DIR}
COPY . .
RUN turbo prune --scope=bridge-whatsapp --docker
RUN turbo prune --scope=@link-stack/bridge-whatsapp --docker
FROM base AS installer
ARG APP_DIR=/opt/bridge-whatsapp
@ -16,7 +16,7 @@ COPY --from=builder ${APP_DIR}/out/full/ .
COPY --from=builder ${APP_DIR}/out/package-lock.json ./package-lock.json
RUN npm ci
RUN npm i -g turbo
RUN turbo run build --filter=bridge-whatsapp
RUN turbo run build --filter=@link-stack/bridge-whatsapp
FROM base as runner
ARG BUILD_DATE