refactor settings

This commit is contained in:
Christian Richter
2022-04-13 17:04:37 +02:00
parent 92d76e00ab
commit 1a1a4d6a3c
114 changed files with 80 additions and 8747 deletions
@@ -0,0 +1,19 @@
FROM amd64/alpine:latest
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