Skip to content

Commit d336228

Browse files
authored
test providing path to conda bin instead of python interpreter
1 parent 5a6b2e0 commit d336228

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ RUN echo "alias pip=pip3" >> ~/.bashrc
5050
RUN echo "alias python=python3" >> ~/.bashrc
5151

5252
RUN mkdir -p /home/coder/.local/share/code-server/User/
53-
RUN echo "{\"workbench.colorTheme\": \"Default Dark+\", \"python.defaultInterpreterPath\": \"/home/coder/local/bin/conda/bin/python\"}" >> /home/coder/.local/share/code-server/User/settings.json
53+
RUN chown -R coder:coder /home/coder/.local/share/code-server/User/
54+
RUN echo "{\"workbench.colorTheme\": \"Default Dark+\", \"python.condaPath\": \"/home/coder/local/bin/conda/condabin/conda"}" >> /home/coder/.local/share/code-server/User/settings.json
5455
5556
5657
# Nice colors in python terminal
@@ -64,5 +65,3 @@ RUN code-server --install-extension eamodio.gitlens
6465
RUN code-server --install-extension coenraads.bracket-pair-colorizer
6566
RUN code-server --install-extension ms-azuretools.vscode-docker
6667
RUN code-server --install-extension njpwerner.autodocstring
67-
68-
RUN echo $PATH

0 commit comments

Comments
 (0)