File tree 3 files changed +22
-0
lines changed 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ .git
2
+ data
3
+ logs
4
+ results
5
+ venv
Original file line number Diff line number Diff line change
1
+ # batteries included (virtuoso for run on cluster with local db)
2
+ FROM joernhees/virtuoso:latest
3
+
4
+ ENTRYPOINT []
5
+ RUN export LC_ALL=C ; RUN ln -s /usr/bin/isql-vt /usr/local/bin/isql
6
+ RUN apt-get update ; apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev git lzop
7
+ RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash ; export PATH="/usr/local/var/pyenv/bin:$PATH" ; export PYENV_ROOT="$HOME/.pyenv" ; eval "$(pyenv init --path)"
8
+ RUN pyenv install 2.7.18 ; pyenv global 2.7.18 ; pip install --upgrade pip virtualenv
9
+
10
+ COPY requirements.txt /tmp
11
+ RUN pip install -r /tmp/requirements.txt
Original file line number Diff line number Diff line change
1
+ # standalone (for use with external virtuoso)
2
+ FROM python:2
3
+
4
+ COPY requirements.txt /tmp
5
+
6
+ RUN pip install -r /tmp/requirements.txt
You can’t perform that action at this time.
0 commit comments