Skip to content

Commit 7e1fba3

Browse files
authored
Alpine 3.23 (#2507)
* Run earlier Signed-off-by: J0WI <[email protected]> * Run update.sh Signed-off-by: J0WI <[email protected]> * Alpine 3.23 Signed-off-by: J0WI <[email protected]> --------- Signed-off-by: J0WI <[email protected]>
1 parent f2ab521 commit 7e1fba3

File tree

11 files changed

+32
-32
lines changed

11 files changed

+32
-32
lines changed

.github/workflows/update-sh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
schedule:
8-
- cron: '15 0 * * *'
8+
- cron: '15 18 * * *'
99
workflow_dispatch:
1010

1111
jobs:

31/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ RUN { \
150150
} > /etc/apache2/conf-available/apache-limits.conf; \
151151
a2enconf apache-limits
152152

153-
ENV NEXTCLOUD_VERSION 31.0.11
153+
ENV NEXTCLOUD_VERSION 31.0.12
154154

155155
RUN set -ex; \
156156
fetchDeps=" \
@@ -160,8 +160,8 @@ RUN set -ex; \
160160
apt-get update; \
161161
apt-get install -y --no-install-recommends $fetchDeps; \
162162
\
163-
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v31.0.11/nextcloud-31.0.11.tar.bz2"; \
164-
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v31.0.11/nextcloud-31.0.11.tar.bz2.asc"; \
163+
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v31.0.12/nextcloud-31.0.12.tar.bz2"; \
164+
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v31.0.12/nextcloud-31.0.12.tar.bz2.asc"; \
165165
export GNUPGHOME="$(mktemp -d)"; \
166166
# gpg key from https://nextcloud.com/nextcloud.asc
167167
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

31/fpm-alpine/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
2-
FROM php:8.3-fpm-alpine3.22
2+
FROM php:8.3-fpm-alpine3.23
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \
@@ -128,16 +128,16 @@ RUN { \
128128
VOLUME /var/www/html
129129

130130

131-
ENV NEXTCLOUD_VERSION 31.0.11
131+
ENV NEXTCLOUD_VERSION 31.0.12
132132

133133
RUN set -ex; \
134134
apk add --no-cache --virtual .fetch-deps \
135135
bzip2 \
136136
gnupg \
137137
; \
138138
\
139-
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v31.0.11/nextcloud-31.0.11.tar.bz2"; \
140-
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v31.0.11/nextcloud-31.0.11.tar.bz2.asc"; \
139+
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v31.0.12/nextcloud-31.0.12.tar.bz2"; \
140+
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v31.0.12/nextcloud-31.0.12.tar.bz2.asc"; \
141141
export GNUPGHOME="$(mktemp -d)"; \
142142
# gpg key from https://nextcloud.com/nextcloud.asc
143143
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

31/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN { \
135135
VOLUME /var/www/html
136136

137137

138-
ENV NEXTCLOUD_VERSION 31.0.11
138+
ENV NEXTCLOUD_VERSION 31.0.12
139139

140140
RUN set -ex; \
141141
fetchDeps=" \
@@ -145,8 +145,8 @@ RUN set -ex; \
145145
apt-get update; \
146146
apt-get install -y --no-install-recommends $fetchDeps; \
147147
\
148-
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v31.0.11/nextcloud-31.0.11.tar.bz2"; \
149-
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v31.0.11/nextcloud-31.0.11.tar.bz2.asc"; \
148+
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v31.0.12/nextcloud-31.0.12.tar.bz2"; \
149+
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v31.0.12/nextcloud-31.0.12.tar.bz2.asc"; \
150150
export GNUPGHOME="$(mktemp -d)"; \
151151
# gpg key from https://nextcloud.com/nextcloud.asc
152152
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

32/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ RUN { \
150150
} > /etc/apache2/conf-available/apache-limits.conf; \
151151
a2enconf apache-limits
152152

153-
ENV NEXTCLOUD_VERSION 32.0.2
153+
ENV NEXTCLOUD_VERSION 32.0.3
154154

155155
RUN set -ex; \
156156
fetchDeps=" \
@@ -160,8 +160,8 @@ RUN set -ex; \
160160
apt-get update; \
161161
apt-get install -y --no-install-recommends $fetchDeps; \
162162
\
163-
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.2/nextcloud-32.0.2.tar.bz2"; \
164-
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.2/nextcloud-32.0.2.tar.bz2.asc"; \
163+
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.3/nextcloud-32.0.3.tar.bz2"; \
164+
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.3/nextcloud-32.0.3.tar.bz2.asc"; \
165165
export GNUPGHOME="$(mktemp -d)"; \
166166
# gpg key from https://nextcloud.com/nextcloud.asc
167167
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

32/fpm-alpine/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
2-
FROM php:8.3-fpm-alpine3.22
2+
FROM php:8.3-fpm-alpine3.23
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \
@@ -128,16 +128,16 @@ RUN { \
128128
VOLUME /var/www/html
129129

130130

131-
ENV NEXTCLOUD_VERSION 32.0.2
131+
ENV NEXTCLOUD_VERSION 32.0.3
132132

133133
RUN set -ex; \
134134
apk add --no-cache --virtual .fetch-deps \
135135
bzip2 \
136136
gnupg \
137137
; \
138138
\
139-
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.2/nextcloud-32.0.2.tar.bz2"; \
140-
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.2/nextcloud-32.0.2.tar.bz2.asc"; \
139+
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.3/nextcloud-32.0.3.tar.bz2"; \
140+
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.3/nextcloud-32.0.3.tar.bz2.asc"; \
141141
export GNUPGHOME="$(mktemp -d)"; \
142142
# gpg key from https://nextcloud.com/nextcloud.asc
143143
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

32/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN { \
135135
VOLUME /var/www/html
136136

137137

138-
ENV NEXTCLOUD_VERSION 32.0.2
138+
ENV NEXTCLOUD_VERSION 32.0.3
139139

140140
RUN set -ex; \
141141
fetchDeps=" \
@@ -145,8 +145,8 @@ RUN set -ex; \
145145
apt-get update; \
146146
apt-get install -y --no-install-recommends $fetchDeps; \
147147
\
148-
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.2/nextcloud-32.0.2.tar.bz2"; \
149-
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.2/nextcloud-32.0.2.tar.bz2.asc"; \
148+
curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.3/nextcloud-32.0.3.tar.bz2"; \
149+
curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.3/nextcloud-32.0.3.tar.bz2.asc"; \
150150
export GNUPGHOME="$(mktemp -d)"; \
151151
# gpg key from https://nextcloud.com/nextcloud.asc
152152
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

generate-stackbrew-library.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -Eeuo pipefail
33

4-
stable_channel='31.0.11'
4+
stable_channel='31.0.12'
55

66
self="$(basename "$BASH_SOURCE")"
77
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"

latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
32.0.2
1+
32.0.3

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -eo pipefail
33

44
declare -A alpine_version=(
5-
[default]='3.22'
5+
[default]='3.23'
66
)
77

88
declare -A debian_version=(

0 commit comments

Comments
 (0)