linuxserver / docker-libreoffice

GNU General Public License v3.0
76 stars 14 forks source link

Plan to upgrade libreoffice to 24? #14

Closed yonghaoy closed 1 week ago

yonghaoy commented 2 weeks ago

Is this a new feature request?

Wanted change

Upgrade libreoffice to 24

Reason for change

Libreoffice 7.6 end of life on June 12 https://wiki.documentfoundation.org/ReleasePlan, do we have plan to upgrade libreoffice?

Proposed code change

https://github.com/linuxserver/docker-libreoffice/blob/f222fbaddcb55830b0fce3a5e5604a626c62fdf9/Dockerfile#L6

github-actions[bot] commented 2 weeks ago

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

thespad commented 2 weeks ago

That's a matter for the Alpine packagers really, right now they're still packaging 7.6.

Frankly it doesn't seem a great idea on the Libreoffice side to EOL both currently supported versions of their product within 6 months of each other and without another LTS version for people to move to yet.

yonghaoy commented 1 week ago

Thanks! @thespad . I will close this ticket and watch for https://pkgs.alpinelinux.org/packages?name=libreoffice&branch=v3.20&repo=&arch=&maintainer=

One more question before closing this, do you know how to prevent user from switching to root? Right now, user can switch to root in terminal by running sudo -s, and our security does not like this. Thanks

thespad commented 1 week ago

You've got a few options; you could uninstall sudo, you could remove the abc user from the wheel group, or you could edit the sudoers file, all via https://www.linuxserver.io/custom

yonghaoy commented 1 week ago

Thanks!