Skip to content

Commit 848d653

Browse files
committed
dockerfile formatting and minor fix
1 parent c05ce90 commit 848d653

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

Dockerfile

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
FROM joernhees/virtuoso:latest
33

44
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
5+
RUN export LC_ALL=C \
6+
&& ln -s /usr/bin/isql-vt /usr/local/bin/isql
7+
RUN apt-get update \
8+
&& 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)"
13+
RUN pyenv install 2.7.18 \
14+
&& pyenv global 2.7.18 \
15+
&& pip install --upgrade pip virtualenv
916

1017
COPY requirements.txt /tmp
1118
RUN pip install -r /tmp/requirements.txt

0 commit comments

Comments
 (0)