lsup_rdf.Dockerfile 322 B

1234567891011121314
  1. FROM alpine:latest
  2. RUN apk update
  3. RUN apk add -t devtools build-base git
  4. RUN apk add util-linux-dev re2c python3 python3-dev py3-pip
  5. WORKDIR /opt/lakesuperior/lsup_rdf
  6. RUN git clone --recurse-submodules https://git.knowledgetx.com/scossu/lsup_rdf.git src
  7. WORKDIR src
  8. RUN make install
  9. RUN make py
  10. #RUN apk del devtools