浏览代码

Initial commit.

Stefano Cossu 2 年之前
当前提交
5f6183dbc6
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      lsup_rdf.Dockerfile

+ 14 - 0
lsup_rdf.Dockerfile

@@ -0,0 +1,14 @@
+FROM alpine:latest
+
+RUN apk update
+RUN apk add -t devtools build-base git
+RUN apk add util-linux-dev re2c python3 python3-dev py3-pip
+
+WORKDIR /opt/lakesuperior/lsup_rdf
+RUN git clone --recurse-submodules https://git.knowledgetx.com/scossu/lsup_rdf.git src
+WORKDIR src
+
+RUN make install
+RUN make py
+
+#RUN apk del devtools