1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2025-01-04 03:31:53 +00:00
syncthing-app/Dockerfile
Girish Ramakrishnan 94520d61bf Remove ldap auth
syncthing is fundamentally a single user app and it's confusing that
one can LDAP login giving the impression it is somehow multi-user.
2018-02-26 14:05:39 -08:00

15 lines
387 B
Docker

FROM cloudron/base:0.10.0
MAINTAINER Syncthing Developers <support@cloudron.io>
ENV VERSION 0.14.44
RUN mkdir -p /app/code \
&& wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - \
| tar -xz -C /app/code --strip-components=1
WORKDIR /app/code
ADD start.sh /app/code/start.sh
CMD [ "/app/code/start.sh" ]