File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -19,20 +19,29 @@ RUN /tmp/sources.list.d/init.sh \
19
19
# Install common dependencies
20
20
RUN apt-get update && apt-get install -y \
21
21
unminimize \
22
+ sudo \
22
23
software-properties-common \
24
+ locales \
23
25
build-essential \
24
26
cmake \
25
27
ninja-build \
26
28
cppcheck \
27
29
catch2 \
30
+ fzf \
28
31
git \
29
32
htop \
30
33
jq \
31
- zsh
34
+ tree \
35
+ vim \
36
+ zsh \
37
+ autojump
32
38
33
39
# Unminimize to restore human-friendly tools that are missing from a minimal install
34
40
RUN yes | unminimize
35
41
42
+ # Set locale
43
+ RUN locale-gen en_US.UTF-8
44
+
36
45
# Set zsh as default shell
37
46
RUN chsh -s /bin/zsh
38
47
@@ -52,6 +61,7 @@ RUN add-apt-repository ppa:ubuntu-toolchain-r/ppa -y \
52
61
&& apt-get update && apt-get install -y \
53
62
gcc-${GCC_VERSION} \
54
63
g++-${GCC_VERSION} \
64
+ libunwind-dev \
55
65
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_VERSION} ${GCC_VERSION}00 \
56
66
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} ${GCC_VERSION}00
57
67
You can’t perform that action at this time.
0 commit comments