File tree Expand file tree Collapse file tree 8 files changed +72
-183
lines changed Expand file tree Collapse file tree 8 files changed +72
-183
lines changed Original file line number Diff line number Diff line change 53
53
options :
54
54
- x86-64
55
55
- arm64
56
- - armhf
57
56
validations :
58
57
required : true
59
58
- type : textarea
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
3
- FROM ghcr.io/linuxserver/baseimage-alpine:3.17
3
+ FROM ghcr.io/linuxserver/baseimage-alpine:3.18
4
4
5
5
# set version label
6
6
ARG BUILD_DATE
@@ -25,11 +25,11 @@ RUN \
25
25
if [ -z ${LDAP_VERSION+x} ]; then \
26
26
LDAP_VERSION=$(curl -sL https://pypi.python.org/pypi/python-ldap/json |jq -r '. | .info.version' ); \
27
27
fi && \
28
- python3 -m ensurepip && \
29
- pip3 install -U --no-cache-dir \
28
+ python3 -m venv /lsiopy && \
29
+ pip install -U --no-cache-dir \
30
30
pip \
31
31
wheel && \
32
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17 / \
32
+ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18 / \
33
33
cryptography \
34
34
python-ldap=="${LDAP_VERSION}" && \
35
35
echo "**** cleanup ****" && \
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
3
- FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
3
+ FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
4
4
5
5
# set version label
6
6
ARG BUILD_DATE
@@ -25,11 +25,11 @@ RUN \
25
25
if [ -z ${LDAP_VERSION+x} ]; then \
26
26
LDAP_VERSION=$(curl -sL https://pypi.python.org/pypi/python-ldap/json |jq -r '. | .info.version'); \
27
27
fi && \
28
- python3 -m ensurepip && \
29
- pip3 install -U --no-cache-dir \
28
+ python3 -m venv /lsiopy && \
29
+ pip install -U --no-cache-dir \
30
30
pip \
31
31
wheel && \
32
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17 / \
32
+ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18 / \
33
33
cryptography \
34
34
python-ldap=="${LDAP_VERSION}" && \
35
35
echo "**** cleanup ****" && \
Load Diff This file was deleted.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\< version tag\> |
58
58
| arm64 | ✅ | arm64v8-\< version tag\> |
59
- | armhf | ✅ | arm32v7- \< version tag \> |
59
+ | armhf | ❌ | |
60
60
61
61
## Application Setup
62
62
@@ -211,6 +211,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
211
211
212
212
## Versions
213
213
214
+ * ** 25.05.23:** - Rebase to Alpine 3.18, deprecate armhf.
214
215
* ** 30.12.22:** - Rebase to alpine 3.17.
215
216
* ** 19.09.22:** - Rebase to alpine 3.15.
216
217
* ** 14.05.21:** - Add linuxserver wheel index.
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ external_type: pip_version
6
6
release_type : stable
7
7
release_tag : latest
8
8
ls_branch : master
9
+ build_armhf : false
9
10
repo_vars :
10
11
- EXT_RELEASE_TYPE = 'pip_version'
11
12
- EXT_PIP = 'python-ldap'
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_
11
11
available_architectures :
12
12
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
13
13
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
14
- - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
15
14
16
15
# container parameters
17
16
common_param_env_vars_enabled : false
@@ -43,6 +42,7 @@ app_setup_block: |
43
42
44
43
# changelog
45
44
changelogs :
45
+ - { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
46
46
- { date: "30.12.22:", desc: "Rebase to alpine 3.17." }
47
47
- { date: "19.09.22:", desc: "Rebase to alpine 3.15." }
48
48
- { date: "14.05.21:", desc: "Add linuxserver wheel index." }
You can’t perform that action at this time.
0 commit comments