From d61965d1f0cf561890c8d5e201961edb08f17474 Mon Sep 17 00:00:00 2001 From: RenewedKeys <75775165+RenewedKeys@users.noreply.github.com> Date: Sun, 23 Nov 2025 03:55:53 -0600 Subject: [PATCH] fix(syncribullet): copy dist instead of public/adapters in Dockerfile (#56) Updated the Dockerfile to copy built files from the 'dist' directory instead of 'public' and 'adapters'. --- apps/syncribullet/compose.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/syncribullet/compose.yaml b/apps/syncribullet/compose.yaml index e1d3866..479a94c 100644 --- a/apps/syncribullet/compose.yaml +++ b/apps/syncribullet/compose.yaml @@ -26,10 +26,8 @@ services: RUN npm ci --ignore-scripts --only=production && npm cache clean --force # Copy built files from the builder stage - COPY --from=builder /build/public ./public - COPY --from=builder /build/adapters ./adapters + COPY --from=builder /build/dist ./dist COPY --from=builder /build/server ./server - COPY --from=builder /build/node_modules ./node_modules ENV NODE_ENV=production @@ -62,4 +60,4 @@ services: start_period: 60s profiles: - syncribullet - - all \ No newline at end of file + - all