Add app data for terminusdb-app

This commit is contained in:
Joe
2021-03-09 20:27:37 -06:00
parent b94e6ac118
commit 5392395115
3 changed files with 56 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
ARG VERSION=4.2.0
WORKDIR /app/code
RUN curl -L https://github.com/terminusdb/terminusdb/releases/download/v${VERSION}/terminusdb_${VERSION}_amd64.deb -o terminusdb.deb \
&& apt-get update \
&& apt-get install ./terminusdb.deb -y \
&& apt-get clean \
&& rm terminusdb.deb
COPY start.sh /app/code/start.sh
RUN chmod +x /app/code/start.sh
CMD start.sh