File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 2
2
FROM joernhees/virtuoso:latest
3
3
4
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
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
9
16
10
17
COPY requirements.txt /tmp
11
18
RUN pip install -r /tmp/requirements.txt
You can’t perform that action at this time.
0 commit comments