File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ RUN apt-get update && apt-get install -y \
38
38
RUN locale-gen en_US.UTF-8
39
39
# We cannot use update-locale because docker will not use the env variables
40
40
# configured in /etc/default/locale so we need to set it manually.
41
- ENV LC_ALL=en_US.UTF-8
41
+ ENV LC_ALL=en_US.UTF-8 \
42
+ SHELL=/bin/bash
42
43
43
44
RUN adduser --gecos '' --disabled-password coder && \
44
45
echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ RUN apt-get update && apt-get install -y \
15
15
RUN locale-gen en_US.UTF-8
16
16
# We cannot use update-locale because docker will not use the env variables
17
17
# configured in /etc/default/locale so we need to set it manually.
18
- ENV LC_ALL=en_US.UTF-8
18
+ ENV LC_ALL=en_US.UTF-8 \
19
+ SHELL=/bin/bash
19
20
20
21
RUN adduser --gecos '' --disabled-password coder && \
21
22
echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
You can’t perform that action at this time.
0 commit comments