adjust imports

This commit is contained in:
A.Unger
2021-02-04 11:46:32 +01:00
parent 13dbfc6e6c
commit f55a8092cb
67 changed files with 27 additions and 27 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM arm32v6/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 Graph" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"
EXPOSE 9120 9124
ENTRYPOINT ["/usr/bin/ocis-graph"]
CMD ["server"]
COPY bin/ocis-graph /usr/bin/ocis-graph