Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

Commit 931b007

Browse files
authored
Merge pull request #14 from linuxserver/develop-nightly-readme
2 parents 2519d12 + da0ac27 commit 931b007

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ RUN \
1818
echo "**** install packages ****" && \
1919
apk add -U --update --no-cache --virtual=build-dependencies \
2020
build-base \
21-
gcc \
22-
g++ \
2321
libffi-dev \
2422
libxml2-dev \
2523
libzen-dev \
@@ -46,7 +44,7 @@ RUN \
4644
pip3 install -U --no-cache-dir \
4745
pip \
4846
wheel && \
49-
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
47+
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17/ -r requirements.txt && \
5048
pip3 cache purge && \
5149
echo "**** cleanup ****" && \
5250
apk del --purge \

Dockerfile.aarch64

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ RUN \
1818
echo "**** install packages ****" && \
1919
apk add -U --update --no-cache --virtual=build-dependencies \
2020
build-base \
21-
gcc \
22-
g++ \
2321
libffi-dev \
2422
libxml2-dev \
2523
libzen-dev \
@@ -46,7 +44,7 @@ RUN \
4644
pip3 install -U --no-cache-dir \
4745
pip \
4846
wheel && \
49-
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
47+
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17/ -r requirements.txt && \
5048
pip3 cache purge && \
5149
echo "**** cleanup ****" && \
5250
apk del --purge \

Dockerfile.armhf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ RUN \
1818
echo "**** install packages ****" && \
1919
apk add -U --update --no-cache --virtual=build-dependencies \
2020
build-base \
21-
gcc \
22-
g++ \
2321
libffi-dev \
2422
libxml2-dev \
2523
libzen-dev \
@@ -46,7 +44,7 @@ RUN \
4644
pip3 install -U --no-cache-dir \
4745
pip \
4846
wheel && \
49-
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
47+
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17/ -r requirements.txt && \
5048
pip3 cache purge && \
5149
echo "**** cleanup ****" && \
5250
apk del --purge \

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ This image provides various versions that are available via tags. Please read th
6666
| :----: | :----: |--- |
6767
| latest || Stable releases. |
6868
| develop || Latest commits from the develop branch |
69+
| nightly || Latest commits from the nightly branch |
6970
## Application Setup
7071

7172
There is a [walkthrough](https://metamanager.wiki/en/latest/home/guides/docker.html#setting-up-the-initial-config-file) available to help get you up and running.
@@ -247,6 +248,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
247248

248249
## Versions
249250

251+
* **05.03.23:** - Add nightly branch.
250252
* **11.12.22:** - Rebase develop to Alpine 3.17.
251253
* **08.11.22:** - Add develop branch.
252254
* **25.10.22:** - Support commandline args and relative paths.

readme-vars.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ development_versions: true
1919
development_versions_items:
2020
- { tag: "latest", desc: "Stable releases." }
2121
- { tag: "develop", desc: "Latest commits from the develop branch" }
22+
- { tag: "nightly", desc: "Latest commits from the nightly branch" }
2223

2324
# container parameters
2425
common_param_env_vars_enabled: true
@@ -61,6 +62,7 @@ app_setup_block: |
6162
6263
# changelog
6364
changelogs:
65+
- { date: "05.03.23:", desc: "Add nightly branch." }
6466
- { date: "11.12.22:", desc: "Rebase develop to Alpine 3.17." }
6567
- { date: "08.11.22:", desc: "Add develop branch." }
6668
- { date: "25.10.22:", desc: "Support commandline args and relative paths." }

0 commit comments

Comments
 (0)