Skip to content

Commit

Permalink
Merge branch 'main' into create_alter_database
Browse files Browse the repository at this point in the history
  • Loading branch information
gurkanindibay authored Oct 13, 2023
2 parents e5a6b78 + fb08f9b commit 81766e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ RUN apt update && apt install -y \
&& add-apt-repository ppa:deadsnakes/ppa -y \
&& apt install -y \
python3.9-full \
# software properties pulls in pkexec, which makes the debugger unusable in vscode
&& apt purge -y \
software-properties-common \
&& apt autoremove -y \
&& apt clean

RUN sudo pip3 install pipenv pipenv-shebang
Expand Down Expand Up @@ -109,7 +113,7 @@ WORKDIR /uncrustify/uncrustify-uncrustify-0.68.1/
RUN mkdir build
WORKDIR /uncrustify/uncrustify-uncrustify-0.68.1/build/
RUN cmake ..
RUN make -sj8
RUN MAKEFLAGS="-j $(nproc)" make -s

RUN make install DESTDIR=/uncrustify

Expand Down

0 comments on commit 81766e4

Please sign in to comment.