File tree Expand file tree Collapse file tree 5 files changed +92
-90
lines changed Expand file tree Collapse file tree 5 files changed +92
-90
lines changed Original file line number Diff line number Diff line change @@ -8,36 +8,36 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
8
8
LABEL maintainer="aptalca"
9
9
10
10
RUN \
11
- echo "**** install build packages ****" && \
12
- apk add --no-cache --virtual=build-dependencies \
13
- build-base \
14
- cargo \
15
- libffi-dev \
16
- openldap-dev \
17
- python3-dev && \
18
- echo "**** install runtime packages ****" && \
19
- apk add --no-cache \
20
- libffi \
21
- libldap \
22
- py3-pip \
23
- python3 && \
24
- if [ -z ${LDAP_VERSION+x} ]; then \
25
- LDAP_INSTALL="python-ldap" ; \
26
- else \
27
- LDAP_INSTALL="python-ldap==${LDAP_VERSION}" ; \
28
- fi && \
29
- pip3 install -U --no-cache-dir \
30
- pip && \
31
- pip install -U \
32
- cryptography \
33
- ${LDAP_INSTALL} && \
34
- echo "**** cleanup ****" && \
35
- apk del --purge \
36
- build-dependencies && \
37
- rm -rf \
38
- /tmp/* \
39
- /root/.cache \
40
- /root/.cargo
11
+ echo "**** install build packages ****" && \
12
+ apk add --no-cache --virtual=build-dependencies \
13
+ build-base \
14
+ cargo \
15
+ libffi-dev \
16
+ openldap-dev \
17
+ python3-dev && \
18
+ echo "**** install runtime packages ****" && \
19
+ apk add --no-cache \
20
+ libffi \
21
+ libldap \
22
+ py3-pip \
23
+ python3 && \
24
+ if [ -z ${LDAP_VERSION+x} ]; then \
25
+ LDAP_INSTALL="python-ldap" ; \
26
+ else \
27
+ LDAP_INSTALL="python-ldap==${LDAP_VERSION}" ; \
28
+ fi && \
29
+ pip3 install -U --no-cache-dir \
30
+ pip && \
31
+ pip install -U --find-links https://wheel-index.linuxserver.io/alpine/ \
32
+ cryptography \
33
+ ${LDAP_INSTALL} && \
34
+ echo "**** cleanup ****" && \
35
+ apk del --purge \
36
+ build-dependencies && \
37
+ rm -rf \
38
+ /tmp/* \
39
+ /root/.cache \
40
+ /root/.cargo
41
41
42
42
# copy local files
43
43
COPY root/ /
Original file line number Diff line number Diff line change @@ -8,36 +8,36 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
8
8
LABEL maintainer="aptalca"
9
9
10
10
RUN \
11
- echo "**** install build packages ****" && \
12
- apk add --no-cache --virtual=build-dependencies \
13
- build-base \
14
- cargo \
15
- libffi-dev \
16
- openldap-dev \
17
- python3-dev && \
18
- echo "**** install runtime packages ****" && \
19
- apk add --no-cache \
20
- libffi \
21
- libldap \
22
- py3-pip \
23
- python3 && \
24
- if [ -z ${LDAP_VERSION+x} ]; then \
25
- LDAP_INSTALL="python-ldap"; \
26
- else \
27
- LDAP_INSTALL="python-ldap==${LDAP_VERSION}"; \
28
- fi && \
29
- pip3 install -U --no-cache-dir \
30
- pip && \
31
- pip install -U \
32
- cryptography \
33
- ${LDAP_INSTALL} && \
34
- echo "**** cleanup ****" && \
35
- apk del --purge \
36
- build-dependencies && \
37
- rm -rf \
38
- /tmp/* \
39
- /root/.cache \
40
- /root/.cargo
11
+ echo "**** install build packages ****" && \
12
+ apk add --no-cache --virtual=build-dependencies \
13
+ build-base \
14
+ cargo \
15
+ libffi-dev \
16
+ openldap-dev \
17
+ python3-dev && \
18
+ echo "**** install runtime packages ****" && \
19
+ apk add --no-cache \
20
+ libffi \
21
+ libldap \
22
+ py3-pip \
23
+ python3 && \
24
+ if [ -z ${LDAP_VERSION+x} ]; then \
25
+ LDAP_INSTALL="python-ldap"; \
26
+ else \
27
+ LDAP_INSTALL="python-ldap==${LDAP_VERSION}"; \
28
+ fi && \
29
+ pip3 install -U --no-cache-dir \
30
+ pip && \
31
+ pip install -U --find-links https://wheel-index.linuxserver.io/alpine/ \
32
+ cryptography \
33
+ ${LDAP_INSTALL} && \
34
+ echo "**** cleanup ****" && \
35
+ apk del --purge \
36
+ build-dependencies && \
37
+ rm -rf \
38
+ /tmp/* \
39
+ /root/.cache \
40
+ /root/.cargo
41
41
42
42
# copy local files
43
43
COPY root/ /
Original file line number Diff line number Diff line change @@ -8,36 +8,36 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
8
8
LABEL maintainer="aptalca"
9
9
10
10
RUN \
11
- echo "**** install build packages ****" && \
12
- apk add --no-cache --virtual=build-dependencies \
13
- build-base \
14
- cargo \
15
- libffi-dev \
16
- openldap-dev \
17
- python3-dev && \
18
- echo "**** install runtime packages ****" && \
19
- apk add --no-cache \
20
- libffi \
21
- libldap \
22
- py3-pip \
23
- python3 && \
24
- if [ -z ${LDAP_VERSION+x} ]; then \
25
- LDAP_INSTALL="python-ldap"; \
26
- else \
27
- LDAP_INSTALL="python-ldap==${LDAP_VERSION}"; \
28
- fi && \
29
- pip3 install -U --no-cache-dir \
30
- pip && \
31
- pip install -U \
32
- cryptography \
33
- ${LDAP_INSTALL} && \
34
- echo "**** cleanup ****" && \
35
- apk del --purge \
36
- build-dependencies && \
37
- rm -rf \
38
- /tmp/* \
39
- /root/.cache \
40
- /root/.cargo
11
+ echo "**** install build packages ****" && \
12
+ apk add --no-cache --virtual=build-dependencies \
13
+ build-base \
14
+ cargo \
15
+ libffi-dev \
16
+ openldap-dev \
17
+ python3-dev && \
18
+ echo "**** install runtime packages ****" && \
19
+ apk add --no-cache \
20
+ libffi \
21
+ libldap \
22
+ py3-pip \
23
+ python3 && \
24
+ if [ -z ${LDAP_VERSION+x} ]; then \
25
+ LDAP_INSTALL="python-ldap"; \
26
+ else \
27
+ LDAP_INSTALL="python-ldap==${LDAP_VERSION}"; \
28
+ fi && \
29
+ pip3 install -U --no-cache-dir \
30
+ pip && \
31
+ pip install -U --find-links https://wheel-index.linuxserver.io/alpine/ \
32
+ cryptography \
33
+ ${LDAP_INSTALL} && \
34
+ echo "**** cleanup ****" && \
35
+ apk del --purge \
36
+ build-dependencies && \
37
+ rm -rf \
38
+ /tmp/* \
39
+ /root/.cache \
40
+ /root/.cargo
41
41
42
42
# copy local files
43
43
COPY root/ /
Original file line number Diff line number Diff line change @@ -214,6 +214,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
214
214
215
215
## Versions
216
216
217
+ * ** 14.05.21:** - Add linuxserver wheel index.
217
218
* ** 12.02.21:** - Clean up cargo/rust cache.
218
219
* ** 10.02.21:** - Rebasing to alpine 3.13.
219
220
* ** 08.09.20:** - Set form action correctly.
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ app_setup_block: |
43
43
44
44
# changelog
45
45
changelogs :
46
+ - { date: "14.05.21:", desc: "Add linuxserver wheel index." }
46
47
- { date: "12.02.21:", desc: "Clean up cargo/rust cache." }
47
48
- { date: "10.02.21:", desc: "Rebasing to alpine 3.13." }
48
49
- { date: "08.09.20:", desc: "Set form action correctly." }
You can’t perform that action at this time.
0 commit comments