rename phoenix -> ocis-phoenix

This commit is contained in:
A.Unger
2020-09-18 13:36:01 +02:00
parent aadf516151
commit d6694bcc3e
81 changed files with 152 additions and 159 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 Phoenix" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"
EXPOSE 9100 9104
ENTRYPOINT ["/usr/bin/ocis-phoenix"]
CMD ["server"]
COPY bin/ocis-phoenix /usr/bin/ocis-phoenix