File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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=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 @@ -17,7 +17,8 @@ RUN apt-get update && apt-get install -y \
1717RUN locale-gen en_US.UTF-8
1818# We cannot use update-locale because docker will not use the env variables
1919# configured in /etc/default/locale so we need to set it manually.
20- ENV LC_ALL=en_US.UTF-8
20+ ENV LC_ALL=en_US.UTF-8 \
21+ SHELL=bash
2122
2223RUN adduser --gecos '' --disabled-password coder && \
2324 echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
You can’t perform that action at this time.
0 commit comments