Skip to content

Commit

Permalink
chore: fix paths for vscode (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
rokroskar authored Nov 24, 2021
1 parent ad1a9fa commit e09b923
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/py/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN conda install gxx_linux-64 && \
# install renku-python
ENV RENKU_DISABLE_VERSION_CHECK 1

ENV PATH=$PATH:$HOME/.renku/bin
ENV PATH=$HOME/.local/bin:$PATH:$HOME/.renku/bin

ARG RENKU_VERSION
RUN mkdir -p $HOME/.renku/bin && \
Expand Down
3 changes: 2 additions & 1 deletion scripts/install-vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ VSCODE_VERSION=${VSCODE_VERSION:="3.10.2"}

# code-server installation
mkdir -p ~/.local/lib
mkdir -p ~/.local/bin
curl -fL https://github.com/cdr/code-server/releases/download/v${VSCODE_VERSION}/code-server-${VSCODE_VERSION}-linux-amd64.tar.gz \
| tar -C ~/.local/lib -xz
| tar -C ~/.local/lib -xz
mv ~/.local/lib/code-server-${VSCODE_VERSION}-linux-amd64 ~/.local/lib/code-server-${VSCODE_VERSION}
ln -s ~/.local/lib/code-server-${VSCODE_VERSION}/bin/code-server ~/.local/bin/code-server

Expand Down

0 comments on commit e09b923

Please sign in to comment.