create extension from template

This commit is contained in:
David Christofas
2020-03-03 15:12:16 +01:00
parent 3f7d62de0e
commit 883778d883
40 changed files with 3776 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM arm32v6/alpine:edge
RUN apk update && \
apk upgrade && \
apk add ca-certificates mailcap && \
rm -rf /var/cache/apk/* && \
echo 'hosts: files dns' >| /etc/nsswitch.conf
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
org.label-schema.name="oCIS Thumbnails" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"
EXPOSE 9110 9114
ENTRYPOINT ["/usr/bin/ocis-thumbnails"]
CMD ["server"]
COPY bin/ocis-thumbnails /usr/bin/ocis-thumbnails