Skip to content

Commit 7bce52e

Browse files
committed
Rebase to 3.20
1 parent 5afa5bb commit 7bce52e

File tree

7 files changed

+15
-20
lines changed

7 files changed

+15
-20
lines changed

Dockerfile

Lines changed: 4 additions & 4 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-alpine-nginx:3.19
3+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.20
44

55
# set version label
66
ARG BUILD_DATE
@@ -16,7 +16,6 @@ RUN \
1616
echo "**** install build packages ****" && \
1717
apk add --no-cache --virtual=build-dependencies \
1818
build-base \
19-
musl-dev \
2019
python3 && \
2120
echo "**** install runtime packages ****" && \
2221
apk add --no-cache \
@@ -33,7 +32,7 @@ RUN \
3332
/tmp/budge.tar.gz -L \
3433
"https://github.com/linuxserver/budge/archive/${BUDGE_RELEASE}.tar.gz" && \
3534
tar xf \
36-
/tmp/budge.tar.gz -C \
35+
/tmp/budge.tar.gz -C \
3736
/app/www/public/ --strip-components=1 && \
3837
echo "**** install backend ****" && \
3938
cd /app/www/public/backend && \
@@ -49,8 +48,9 @@ RUN \
4948
npm run build && \
5049
npm prune --omit=dev && \
5150
echo "**** overlay-fs bug workaround ****" && \
52-
mv /app/www/public/frontend/node_modules /app/www/public/frontend/node_modules-tmp && \
51+
mv /app/www/public/frontend/node_modules /app/www/public/frontend/node_modules-tmp && \
5352
mv /app/www/public/backend/node_modules /app/www/public/backend/node_modules-tmp && \
53+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
5454
echo "**** cleanup ****" && \
5555
npm cache clean --force && \
5656
apk del --purge \

Dockerfile.aarch64

Lines changed: 4 additions & 4 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-alpine-nginx:arm64v8-3.19
3+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.20
44

55
# set version label
66
ARG BUILD_DATE
@@ -16,7 +16,6 @@ RUN \
1616
echo "**** install build packages ****" && \
1717
apk add --no-cache --virtual=build-dependencies \
1818
build-base \
19-
musl-dev \
2019
python3 && \
2120
echo "**** install runtime packages ****" && \
2221
apk add --no-cache \
@@ -33,7 +32,7 @@ RUN \
3332
/tmp/budge.tar.gz -L \
3433
"https://github.com/linuxserver/budge/archive/${BUDGE_RELEASE}.tar.gz" && \
3534
tar xf \
36-
/tmp/budge.tar.gz -C \
35+
/tmp/budge.tar.gz -C \
3736
/app/www/public/ --strip-components=1 && \
3837
echo "**** install backend ****" && \
3938
cd /app/www/public/backend && \
@@ -49,8 +48,9 @@ RUN \
4948
npm run build && \
5049
npm prune --omit=dev && \
5150
echo "**** overlay-fs bug workaround ****" && \
52-
mv /app/www/public/frontend/node_modules /app/www/public/frontend/node_modules-tmp && \
51+
mv /app/www/public/frontend/node_modules /app/www/public/frontend/node_modules-tmp && \
5352
mv /app/www/public/backend/node_modules /app/www/public/backend/node_modules-tmp && \
53+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
5454
echo "**** cleanup ****" && \
5555
npm cache clean --force && \
5656
apk del --purge \

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pipeline {
3434
CI_PORT='80'
3535
CI_SSL=''
3636
CI_DELAY='60'
37-
CI_DOCKERENV='TZ=America/New_York'
37+
CI_DOCKERENV=''
3838
CI_AUTH=''
3939
CI_WEBPATH=''
4040
}

README.md

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

275275
## Versions
276276

277+
* **06.06.24:** - Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings.
277278
* **06.03.24:** - Existing users should update: site-confs/default.conf - Cleanup default site conf.
278279
* **06.03.24:** - Rebase to Alpine 3.19 with php 8.3.
279280
* **25.05.23:** - Rebase to Alpine 3.18, deprecate armhf.

jenkins-vars.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ external_type: github_stable
66
release_type: stable
77
release_tag: latest
88
ls_branch: main
9-
build_armhf: false
109
repo_vars:
1110
- EXT_GIT_BRANCH = 'main'
1211
- EXT_USER = 'linuxserver'
@@ -25,6 +24,6 @@ repo_vars:
2524
- CI_PORT='80'
2625
- CI_SSL=''
2726
- CI_DELAY='60'
28-
- CI_DOCKERENV='TZ=America/New_York'
27+
- CI_DOCKERENV=''
2928
- CI_AUTH=''
3029
- CI_WEBPATH=''

readme-vars.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,14 @@ param_usage_include_ports: true
2222
param_ports:
2323
- { external_port: "80", internal_port: "80", port_desc: "http gui" }
2424
- { external_port: "443", internal_port: "443", port_desc: "https gui" }
25-
param_usage_include_env: true
26-
param_env_vars:
27-
- { env_var: "TZ", env_value: "America/New_York", desc: "Specify a timezone to use EG America/New_York"}
2825

2926
# application setup block
3027
app_setup_block_enabled: true
3128
app_setup_block: |
3229
Access the web gui at http://SERVERIP:PORT
3330
# changelog
3431
changelogs:
32+
- { date: "06.06.24:", desc: "Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings."}
3533
- { date: "06.03.24:", desc: "Existing users should update: site-confs/default.conf - Cleanup default site conf." }
3634
- { date: "06.03.24:", desc: "Rebase to Alpine 3.19 with php 8.3."}
3735
- { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }

root/defaults/nginx/site-confs/default.conf.sample

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
## Version 2024/03/06 - Changelog: https://github.com/linuxserver/docker-budge/commits/main/root/defaults/nginx/site-confs/default.conf.sample
1+
## Version 2024/06/06 - Changelog: https://github.com/linuxserver/docker-budge/commits/main/root/defaults/nginx/site-confs/default.conf.sample
22

33
server {
4-
listen 80 default_server;
5-
listen [::]:80 default_server;
6-
7-
listen 443 ssl http2 default_server;
8-
listen [::]:443 ssl http2 default_server;
4+
listen *:80 default_server;
5+
listen *:443 ssl default_server;
96

107
server_name _;
118

0 commit comments

Comments
 (0)