Skip to content

Commit a1b2708

Browse files
committed
rebase to Alpine 3.24
1 parent ae7bc83 commit a1b2708

7 files changed

Lines changed: 12 additions & 10 deletions

File tree

.github/workflows/external_trigger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
3030
echo "> External trigger running off of master branch. To disable this trigger, add \`libreoffice_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
3131
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
32-
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
32+
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.24/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
3333
&& awk '/^P:'"libreoffice"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
3434
echo "Type is \`alpine_repo\`" >> $GITHUB_STEP_SUMMARY
3535
if grep -q "^libreoffice_master_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
@@ -107,7 +107,7 @@ jobs:
107107
if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then
108108
echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY
109109
exit 0
110-
elif [[ $(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/community/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"libreoffice"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]; then
110+
elif [[ $(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.24/community/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"libreoffice"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]; then
111111
echo "New version \`${EXT_RELEASE}\` found; but not all arch repos updated yet; exiting" >> $GITHUB_STEP_SUMMARY
112112
FAILURE_REASON="New version ${EXT_RELEASE} for libreoffice tag latest is detected, however not all arch repos are updated yet. Will try again later."
113113
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-selkies:alpine323
3+
FROM ghcr.io/linuxserver/baseimage-selkies:alpine324
44

55
# set version label
66
ARG BUILD_DATE
@@ -23,7 +23,7 @@ RUN \
2323
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png && \
2424
echo "**** install packages ****" && \
2525
if [ -z ${LIBREOFFICE_VERSION+x} ]; then \
26-
LIBREOFFICE_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
26+
LIBREOFFICE_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.24/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
2727
&& awk '/^P:libreoffice$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
2828
fi && \
2929
apk add --no-cache \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-alpine323
3+
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-alpine324
44

55
# set version label
66
ARG BUILD_DATE
@@ -23,7 +23,7 @@ RUN \
2323
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png && \
2424
echo "**** install packages ****" && \
2525
if [ -z ${LIBREOFFICE_VERSION+x} ]; then \
26-
LIBREOFFICE_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
26+
LIBREOFFICE_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.24/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
2727
&& awk '/^P:libreoffice$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
2828
fi && \
2929
apk add --no-cache \

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ pipeline {
2727
DEV_DOCKERHUB_IMAGE = 'lsiodev/libreoffice'
2828
PR_DOCKERHUB_IMAGE = 'lspipepr/libreoffice'
2929
DIST_IMAGE = 'alpine'
30-
DIST_TAG = '3.23'
31-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.23/community/'
30+
DIST_TAG = '3.24'
31+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.24/community/'
3232
DIST_REPO_PACKAGES = 'libreoffice'
3333
MULTIARCH = 'true'
3434
CI = 'true'

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
586586

587587
## Versions
588588

589+
* **10.06.26:** - Rebase to Alpine 3.24.
589590
* **29.03.26:** - Make Wayland default disable with PIXELFLUX_WAYLAND=false.
590591
* **28.12.25:** - Add Wayland init logic, rebase to Alpine 3.23.
591592
* **12.07.25:** - Rebase to Selkies, Alpine 3.22, HTTPS IS NOW REQUIRED.

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ repo_vars:
1616
- DEV_DOCKERHUB_IMAGE = 'lsiodev/libreoffice'
1717
- PR_DOCKERHUB_IMAGE = 'lspipepr/libreoffice'
1818
- DIST_IMAGE = 'alpine'
19-
- DIST_TAG = '3.23'
20-
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.23/community/'
19+
- DIST_TAG = '3.24'
20+
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.24/community/'
2121
- DIST_REPO_PACKAGES = 'libreoffice'
2222
- MULTIARCH = 'true'
2323
- CI = 'true'

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ init_diagram: |
102102
"libreoffice:latest" <- Base Images
103103
# changelog
104104
changelogs:
105+
- {date: "10.06.26:", desc: "Rebase to Alpine 3.24."}
105106
- {date: "29.03.26:", desc: "Make Wayland default disable with PIXELFLUX_WAYLAND=false."}
106107
- {date: "28.12.25:", desc: "Add Wayland init logic, rebase to Alpine 3.23."}
107108
- {date: "12.07.25:", desc: "Rebase to Selkies, Alpine 3.22, HTTPS IS NOW REQUIRED."}

0 commit comments

Comments
 (0)