Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing dependcy for bbb-export-annotations #19703

Closed
ben-ba opened this issue Feb 28, 2024 · 4 comments
Closed

missing dependcy for bbb-export-annotations #19703

ben-ba opened this issue Feb 28, 2024 · 4 comments

Comments

@ben-ba
Copy link

ben-ba commented Feb 28, 2024

Describe the bug
the bbb-export-annotations package depends on poppler-utils

Installation type
manually

Console output

apt info bbb-export-annotations
Package: bbb-export-annotations
Version: 1:2.7-16
Priority: optional
Section: default
Maintainer: ffdixon@bigbluebutton.org
Installed-Size: 10.2 MB
Depends: nodejs,npm,bbb-apps-akka,bbb-web,cairosvg,ghostscript,imagemagick, nodejs (>= 18), nodejs (<< 20)
Homepage: http://bigbluebutton.org/
License: unknown
Vendor: BigBlueButon
Download-Size: 2611 kB
APT-Sources: https://ubuntu.bigbluebutton.org/focal-270 bigbluebutton-focal/main amd64 Packages
Description: BigBlueButton Export Annotations

Additional context
the missing package doesn't throw an error, so furthermore better errorhandling in the bbb-export-annotations ist necessary.

@antobinary
Copy link
Member

Thanks for reporting this! I see the package is indeed present on the installations I have just checked. Out of curiosity, what's the base image you're installing BBB on? Is it additionally slimmed down? Or stock Ubuntu 20.04.x image from provider X?

@ben-ba
Copy link
Author

ben-ba commented Feb 28, 2024

Im using docker, this is my Dockerfile for bbb-export-annotations

FROM node:18-bullseye-slim AS builder

COPY --from=bigbluebutton /bbb-export-annotations /bbb-export-annotations
RUN cd /bbb-export-annotations && npm ci && npm install

# --------------------

FROM node:18-bullseye-slim

#depends on;
#Depends: nodejs,npm,bbb-apps-akka,bbb-web,cairosvg,ghostscript,imagemagick, nodejs (>= 18), nodejs (<< 20)
#see repo https://ubuntu.bigbluebutton.org/focal-270/ bigbluebutton-focal main
#apt info bbb-export-annotations
#missing dependency: poppler-utils for pdftocairo bin -> covert background / original presentation to png
RUN apt update && apt install -y \
    nodejs npm cairosvg ghostscript imagemagick nodejs poppler-utils
#    && useradd --uid 2004 --create-home --user-group bbb-export

COPY --from=builder /bbb-export-annotations /bbb-export-annotations
#we need acces to volume bigbluebutton!
USER root
COPY ./config/settings.json /bbb-export-annotations/config/settings.json
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh

@ben-ba
Copy link
Author

ben-ba commented Feb 28, 2024

maybe related;
#18746
#18739

@antobinary
Copy link
Member

BBB 2.7.4 contained bbb-export-annotations with poppler-utils set as a dependency. Please comment if there is new info in this area.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants