mirror of
https://github.com/linuxserver/docker-libreoffice.git
synced 2026-06-03 09:57:36 +00:00
71 lines
2.2 KiB
Docker
71 lines
2.2 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ghcr.io/linuxserver/baseimage-selkies:alpine323
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
ARG LIBREOFFICE_VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="thelamer"
|
|
|
|
# title
|
|
ENV TITLE=LibreOffice \
|
|
NO_GAMEPAD=true \
|
|
PIXELFLUX_WAYLAND=true \
|
|
SELKIES_DESKTOP=true \
|
|
NO_FULL=true
|
|
|
|
RUN \
|
|
echo "**** add icon ****" && \
|
|
curl -o \
|
|
/usr/share/selkies/www/icon.png \
|
|
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png && \
|
|
echo "**** install packages ****" && \
|
|
if [ -z ${LIBREOFFICE_VERSION+x} ]; then \
|
|
LIBREOFFICE_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
|
|
&& awk '/^P:libreoffice$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
|
|
fi && \
|
|
apk add --no-cache \
|
|
libreoffice==${LIBREOFFICE_VERSION} \
|
|
openjdk8-jre \
|
|
st \
|
|
thunar \
|
|
tint2 && \
|
|
echo "**** locales ****" && \
|
|
for LOCALE in $(curl -sL https://raw.githubusercontent.com/thelamer/lang-stash/master/langs); do \
|
|
apk add --no-cache libreoffice-lang-$(echo ${LOCALE}| tr '[:upper:]' '[:lower:]') || apk add --no-cache libreoffice-lang-$(echo ${LOCALE}| head -c2); \
|
|
done && \
|
|
echo "**** openbox tweaks ****" && \
|
|
sed -i \
|
|
's/NLMC/NLIMC/g' \
|
|
/etc/xdg/openbox/rc.xml && \
|
|
sed -i \
|
|
'/Icon=/c Icon=xterm-color_48x48' \
|
|
/usr/share/applications/st.desktop && \
|
|
echo "**** application tweaks ****" && \
|
|
mv \
|
|
/usr/bin/thunar \
|
|
/usr/bin/thunar-real && \
|
|
echo "**** cleanup ****" && \
|
|
rm -rf \
|
|
/tmp/* \
|
|
/usr/share/applications/footclient.desktop \
|
|
/usr/share/applications/foot-server.desktop \
|
|
/usr/share/applications/st.desktop \
|
|
/usr/share/applications/thunar-bulk-rename.desktop \
|
|
/usr/share/applications/thunar-settings.desktop \
|
|
/usr/share/applications/tint2conf.desktop \
|
|
/usr/share/applications/tint2.desktop \
|
|
/usr/share/applications/uxterm.desktop \
|
|
/usr/share/applications/xfce4-about.desktop \
|
|
/usr/share/applications/xterm.desktop
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 3001
|
|
|
|
VOLUME /config
|