Browse Source

Initial commit.

Stefano Cossu 1 year ago
commit
5f6183dbc6
1 changed files with 14 additions and 0 deletions
  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