[add] drone

This commit is contained in:
Andy Bunce 2021-05-23 21:41:41 +01:00
parent 1080533e6c
commit dec787c6b7
84 changed files with 42 additions and 16 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
# docker file to create graphxq
# @created 2021-04
# author="Andy Bunce"
FROM quodatum/basexhttp
USER root
RUN apt-get update && apt-get install -y graphviz
COPY ./src/webapp/ /srv/basex/webapp/
COPY ./src/repo/ /srv/basex/repo/
COPY ./src/custom /srv/basex/lib/custom
USER 1000
WORKDIR /srv
EXPOSE 8984
# Run BaseX HTTP server by default
CMD ["/srv/basex/bin/basexhttp"]