diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..082b194 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "makefile.configureOnOpen": false +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index b780543..98c1ff5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,7 @@ SHELL ["/usr/bin/zsh", "-c"] # Set the prompt RUN echo "autoload -U colors && colors" >> $HOME/.zshrc -RUN echo 'export "PS1=%F{green}%n@%m %F{blue}%1~ %F{yellow}➜ %f "' >> $HOME/.zshrc +RUN echo 'export PS1="%F{green}%n@%m %F{blue}%1~ %F{yellow}$%f "' >> $HOME/.zshrc # Building everything inside /src WORKDIR /src @@ -117,6 +117,9 @@ RUN pipx install gitxray # Install semgrep RUN pipx install semgrep +# pipx environment path set +RUN pipx ensurepath + # Install git-secrets RUN git clone https://github.com/awslabs/git-secrets.git git-secrets \ && cd git-secrets \