File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 88 // Use 'settings' to set *default* container specific settings.json values on container create.
99 // You can edit these settings after create using File > Preferences > Settings > Remote.
1010 "settings" : {
11- "terminal.integrated.shell.linux" : " /bin/bash" ,
1211 "python.pythonPath" : " /usr/local/bin/python" ,
1312 "python.formatting.provider" : " black" ,
1413 "python.linting.enabled" : true ,
Original file line number Diff line number Diff line change 1414 cp gitpod/settings.json .vscode/settings.json
1515 git fetch --tags
1616 python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true
17- pre-commit install
17+ pre-commit install --install-hooks
1818 command : |
1919 python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true
2020 echo "✨ Pre-build complete! You can close this terminal ✨ "
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM python:3.10.8
22WORKDIR /home/pandas
33
44RUN apt-get update && apt-get -y upgrade
5- RUN apt-get install -y build-essential
5+ RUN apt-get install -y build-essential bash-completion
66
77# hdf5 needed for pytables installation
88# libgles2-mesa needed for pytest-qt
@@ -12,4 +12,6 @@ RUN python -m pip install --upgrade pip
1212COPY requirements-dev.txt /tmp
1313RUN python -m pip install -r /tmp/requirements-dev.txt
1414RUN git config --global --add safe.directory /home/pandas
15+
16+ ENV SHELL "/bin/bash"
1517CMD ["/bin/bash" ]
You can’t perform that action at this time.
0 commit comments