File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
// Use 'settings' to set *default* container specific settings.json values on container create.
9
9
// You can edit these settings after create using File > Preferences > Settings > Remote.
10
10
"settings" : {
11
- "terminal.integrated.shell.linux" : " /bin/bash" ,
12
11
"python.pythonPath" : " /usr/local/bin/python" ,
13
12
"python.formatting.provider" : " black" ,
14
13
"python.linting.enabled" : true ,
Original file line number Diff line number Diff line change 14
14
cp gitpod/settings.json .vscode/settings.json
15
15
git fetch --tags
16
16
python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true
17
- pre-commit install
17
+ pre-commit install --install-hooks
18
18
command : |
19
19
python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true
20
20
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
2
2
WORKDIR /home/pandas
3
3
4
4
RUN 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
6
6
7
7
# hdf5 needed for pytables installation
8
8
# libgles2-mesa needed for pytest-qt
@@ -12,4 +12,6 @@ RUN python -m pip install --upgrade pip
12
12
COPY requirements-dev.txt /tmp
13
13
RUN python -m pip install -r /tmp/requirements-dev.txt
14
14
RUN git config --global --add safe.directory /home/pandas
15
+
16
+ ENV SHELL "/bin/bash"
15
17
CMD ["/bin/bash" ]
You can’t perform that action at this time.
0 commit comments