Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ RUN apt update -qq && apt install -qq -y --no-install-recommends \
apt-transport-https \
curl \
file \
gcc \
gcc-11 \
g++-11 \
git \
g++ \
gnupg2 \
libc++1 \
libgl1 \
libtcmalloc-minimal4 \
make \
Expand All @@ -56,7 +55,10 @@ RUN apt update -qq && apt install -qq -y --no-install-recommends \
jq \
shellcheck \
&& gem install bundler \
&& rm -rf /var/lib/apt/lists/*;
&& rm -rf /var/lib/apt/lists/* \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 110 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 110


# install nodejs using n
RUN curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n \
Expand Down
Loading