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=link --docker
RUN turbo prune --scope=@link-stack/link --docker
FROM base AS installer
ARG APP_DIR=/opt/link
@ -18,7 +18,7 @@ RUN npm ci
COPY --from=builder ${APP_DIR}/out/full/ .
RUN npm i -g turbo
RUN turbo run build --filter=link
RUN turbo run build --filter=@link-stack/link
FROM base AS runner
ARG APP_DIR=/opt/link