File tree Expand file tree Collapse file tree 10 files changed +67
-47
lines changed Expand file tree Collapse file tree 10 files changed +67
-47
lines changed Original file line number Diff line number Diff line change 18
18
fi
19
19
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_FILEZILLA_MASTER\". ****"
20
20
echo "**** Retrieving external version ****"
21
- EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14 /community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
21
+ EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15 /community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
22
22
&& awk '/^P:'"filezilla"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
23
23
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
24
24
echo "**** Can't retrieve external version, exiting ****"
Original file line number Diff line number Diff line change @@ -8,20 +8,21 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
8
8
LABEL maintainer="thelamer"
9
9
10
10
RUN \
11
- echo "**** install packages ****" && \
12
- apk add --no-cache --virtual=build-dependencies \
13
- curl && \
14
- if [ -z ${FILEZILLA_VERSION+x} ]; then \
15
- FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
16
- && awk '/^P:filezilla$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://' ); \
17
- fi && \
18
- apk add --no-cache \
19
- filezilla==${FILEZILLA_VERSION} && \
20
- echo "**** cleanup ****" && \
21
- apk del --purge \
22
- build-dependencies && \
23
- rm -rf \
24
- /tmp/*
11
+ echo "**** install packages ****" && \
12
+ apk add --no-cache --virtual=build-dependencies \
13
+ curl && \
14
+ if [ -z ${FILEZILLA_VERSION+x} ]; then \
15
+ FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
16
+ && awk '/^P:filezilla$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://' ); \
17
+ fi && \
18
+ apk add --no-cache \
19
+ filezilla==${FILEZILLA_VERSION} \
20
+ filezilla-lang && \
21
+ echo "**** cleanup ****" && \
22
+ apk del --purge \
23
+ build-dependencies && \
24
+ rm -rf \
25
+ /tmp/*
25
26
26
27
# add local files
27
28
COPY /root /
Original file line number Diff line number Diff line change @@ -8,20 +8,21 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
8
8
LABEL maintainer="thelamer"
9
9
10
10
RUN \
11
- echo "**** install packages ****" && \
12
- apk add --no-cache --virtual=build-dependencies \
13
- curl && \
14
- if [ -z ${FILEZILLA_VERSION+x} ]; then \
15
- FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
16
- && awk '/^P:filezilla$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
17
- fi && \
18
- apk add --no-cache \
19
- filezilla==${FILEZILLA_VERSION} && \
20
- echo "**** cleanup ****" && \
21
- apk del --purge \
22
- build-dependencies && \
23
- rm -rf \
24
- /tmp/*
11
+ echo "**** install packages ****" && \
12
+ apk add --no-cache --virtual=build-dependencies \
13
+ curl && \
14
+ if [ -z ${FILEZILLA_VERSION+x} ]; then \
15
+ FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
16
+ && awk '/^P:filezilla$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
17
+ fi && \
18
+ apk add --no-cache \
19
+ filezilla==${FILEZILLA_VERSION} \
20
+ filezilla-lang && \
21
+ echo "**** cleanup ****" && \
22
+ apk del --purge \
23
+ build-dependencies && \
24
+ rm -rf \
25
+ /tmp/*
25
26
26
27
# add local files
27
28
COPY /root /
Original file line number Diff line number Diff line change @@ -8,20 +8,21 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
8
8
LABEL maintainer="thelamer"
9
9
10
10
RUN \
11
- echo "**** install packages ****" && \
12
- apk add --no-cache --virtual=build-dependencies \
13
- curl && \
14
- if [ -z ${FILEZILLA_VERSION+x} ]; then \
15
- FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
16
- && awk '/^P:filezilla$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
17
- fi && \
18
- apk add --no-cache \
19
- filezilla==${FILEZILLA_VERSION} && \
20
- echo "**** cleanup ****" && \
21
- apk del --purge \
22
- build-dependencies && \
23
- rm -rf \
24
- /tmp/*
11
+ echo "**** install packages ****" && \
12
+ apk add --no-cache --virtual=build-dependencies \
13
+ curl && \
14
+ if [ -z ${FILEZILLA_VERSION+x} ]; then \
15
+ FILEZILLA_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
16
+ && awk '/^P:filezilla$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
17
+ fi && \
18
+ apk add --no-cache \
19
+ filezilla==${FILEZILLA_VERSION} \
20
+ filezilla-lang && \
21
+ echo "**** cleanup ****" && \
22
+ apk del --purge \
23
+ build-dependencies && \
24
+ rm -rf \
25
+ /tmp/*
25
26
26
27
# add local files
27
28
COPY /root /
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ pipeline {
25
25
DEV_DOCKERHUB_IMAGE = ' lsiodev/filezilla'
26
26
PR_DOCKERHUB_IMAGE = ' lspipepr/filezilla'
27
27
DIST_IMAGE = ' alpine'
28
- DIST_TAG = ' 3.14 '
29
- DIST_REPO = ' http://dl-cdn.alpinelinux.org/alpine/v3.14 /community/'
28
+ DIST_TAG = ' 3.15 '
29
+ DIST_REPO = ' http://dl-cdn.alpinelinux.org/alpine/v3.15 /community/'
30
30
DIST_REPO_PACKAGES = ' filezilla'
31
31
MULTIARCH = ' true'
32
32
CI = ' true'
Original file line number Diff line number Diff line change @@ -227,5 +227,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
227
227
228
228
## Versions
229
229
230
+ * ** 23.12.21:** - Rebase to Alpine 3.15.
230
231
* ** 26.09.21:** - Rebase to Alpine 3.14.
231
232
* ** 18.04.21:** - Initial release.
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ repo_vars:
15
15
- DEV_DOCKERHUB_IMAGE = 'lsiodev/filezilla'
16
16
- PR_DOCKERHUB_IMAGE = 'lspipepr/filezilla'
17
17
- DIST_IMAGE = 'alpine'
18
- - DIST_TAG = '3.14 '
19
- - DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.14 /community/'
18
+ - DIST_TAG = '3.15 '
19
+ - DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.15 /community/'
20
20
- DIST_REPO_PACKAGES = 'filezilla'
21
21
- MULTIARCH = 'true'
22
22
- CI = 'true'
Original file line number Diff line number Diff line change @@ -43,5 +43,6 @@ app_setup_block: |
43
43
44
44
# changelog
45
45
changelogs :
46
+ - { date: "23.12.21:", desc: "Rebase to Alpine 3.15." }
46
47
- { date: "26.09.21:", desc: "Rebase to Alpine 3.14." }
47
48
- { date: "18.04.21:", desc: "Initial release." }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <openbox_menu xmlns =" http://openbox.org/3.4/menu" >
3
+ <menu id =" root-menu" label =" MENU" >
4
+ <item label =" xterm" icon =" /usr/share/pixmaps/xterm-color_48x48.xpm" ><action name =" Execute" ><command >/usr/bin/xterm</command ></action ></item >
5
+ <item label =" Filezilla" icon =" /usr/share/icons/hicolor/48x48/apps/filezilla.png" ><action name =" Execute" ><command >/usr/bin/filezilla</command ></action ></item >
6
+ <item label =" Reload OB" ><action name =" Reconfigure" /></item >
7
+ </menu >
8
+ </openbox_menu >
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/with-contenv bash
2
+
3
+ # default file copies first run
4
+ [[ ! -f /config/.config/openbox/menu.xml ]] && \
5
+ mkdir -p /config/.config/openbox && \
6
+ cp /defaults/menu.xml /config/.config/openbox/menu.xml && \
7
+ chown -R abc:abc /config/.config
You can’t perform that action at this time.
0 commit comments