diff --git a/apps/frontend/Dockerfile b/apps/frontend/Dockerfile index 3bab406..0706f79 100644 --- a/apps/frontend/Dockerfile +++ b/apps/frontend/Dockerfile @@ -67,6 +67,12 @@ ENV PORT="3000" ENV NODE_ENV="production" WORKDIR /app -COPY --from=installer . . + +# Copy our required files from the installer stage +COPY --from=installer /app/apps/frontend ./apps/frontend +COPY --from=installer /app/bun.lockb ./apps/bun.lockb +COPY --from=installer /app/node_modules ./node_modules +COPY --from=installer /app/package.json ./apps/package.json +COPY --from=installer /app/packages ./apps/packages CMD bun apps/frontend/.next/standalone/server.js \ No newline at end of file