File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1- FROM lsiobase/alpine:3.6
2- MAINTAINER sparklyballs
1+ FROM lsiobase/alpine:3.7
32
43# set version label
54ARG BUILD_DATE
65ARG VERSION
76LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7+ LABEL maintainer="sparklyballs"
88
99# environment settings
1010ARG SYNC_SRC="/tmp/syncthing"
1111ARG SYNC_BUILD="$SYNC_SRC/src/github.com/syncthing/syncthing"
1212ENV HOME="/config"
1313
14- # install build packages
1514RUN \
15+ echo "**** install build packages ****" && \
1616 apk add --no-cache --virtual=build-dependencies \
1717 curl \
1818 g++ \
1919 gcc \
2020 go \
2121 tar && \
22-
23- # compile syncthing
22+ echo "**** compile syncthing ****" && \
2423 mkdir -p \
2524 "${SYNC_BUILD}" && \
2625 export GOPATH="${SYNC_SRC}" && \
3433 "${SYNC_BUILD}" --strip-components=1 && \
3534 cd "${SYNC_BUILD}" && \
3635 go run build.go -no-upgrade -version=${SYNC_TAG} && \
37-
38- # install syncthing
36+ echo "**** install syncthing ****" && \
3937 install -d -o abc -g abc \
4038 /var/lib/syncthing && \
4139 install -D -m755 \
4745 fi; \
4846 done && \
4947 export GOPATH="" && \
50-
51- # cleanup
48+ echo "**** cleanup ****" && \
5249 apk del --purge \
5350 build-dependencies && \
5451 rm -rf \
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ You can find some of the best documentation available on the web at [docs.syncth
8585
8686## Versions
8787
88+ + ** 13.12.17:** Rebase to alpine 3.7.
8889+ ** 25.10.17:** Add env for manual setting of umask.
8990+ ** 29.07.17:** Simplify build structure as symlinks failing on > 0.14.32
9091+ ** 28.05.17:** Rebase to alpine 3.6.
You can’t perform that action at this time.
0 commit comments