File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
# batteries included (virtuoso for run on cluster with local db)
2
2
FROM joernhees/virtuoso:latest
3
3
4
+ ENV HOME="/root"
5
+ WORKDIR $HOME
4
6
ENTRYPOINT []
5
- RUN export LC_ALL=C \
6
- && ln -s /usr/bin/isql-vt /usr/local/bin/isql
7
+ RUN ln -s /usr/bin/isql-vt /usr/local/bin/isql
7
8
RUN apt-get update \
8
9
&& 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
9
- RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash \
10
- && export PATH="/usr/local/var/pyenv/bin:$PATH" \
11
- && export PYENV_ROOT="$HOME/.pyenv" \
12
- && eval "$(pyenv init --path)"
10
+
11
+ RUN git clone --depth=1 https://github.com/pyenv/pyenv.git .pyenv
12
+ ENV PYENV_ROOT="$HOME/.pyenv"
13
+ ENV PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH"
14
+
13
15
RUN pyenv install 2.7.18 \
14
16
&& pyenv global 2.7.18 \
15
17
&& pip install --upgrade pip virtualenv
You can’t perform that action at this time.
0 commit comments