File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 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 \
3838RUN locale-gen en_US.UTF-8
3939# We cannot use update-locale because docker will not use the env variables
4040# 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
4243
4344RUN adduser --gecos '' --disabled-password coder && \
4445 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 \
1515RUN locale-gen en_US.UTF-8
1616# We cannot use update-locale because docker will not use the env variables
1717# 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
1920
2021RUN adduser --gecos '' --disabled-password coder && \
2122 echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
You can’t perform that action at this time.
0 commit comments