Initial boilerplate from boilr-ocis-extension.

This commit is contained in:
Benedikt Kulmann
2020-04-07 15:06:08 +02:00
parent 6fdbbd7e8e
commit a8af03c338
43 changed files with 3481 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 Settings" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"
EXPOSE 9190 9194
ENTRYPOINT ["/usr/bin/ocis-settings"]
CMD ["server"]
COPY bin/ocis-settings /usr/bin/ocis-settings