diff --git a/Dockerfile b/Dockerfile index bcc6f27..3b38493 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,10 @@ LABEL maintainer="aptalca" # environment settings ENV HOME="/config" +ENV SHELL=/bin/bash + RUN \ + chsh -s /bin/bash && \ echo "**** install node repo ****" && \ apt-get update && \ apt-get install -y \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index cd4f211..06b3310 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -10,7 +10,10 @@ LABEL maintainer="aptalca" # environment settings ENV HOME="/config" +ENV SHELL=/bin/bash + RUN \ + chsh -s /bin/bash && \ echo "**** install node repo ****" && \ apt-get update && \ apt-get install -y \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 5822ad0..683659e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -10,7 +10,10 @@ LABEL maintainer="aptalca" # environment settings ENV HOME="/config" +ENV SHELL=/bin/bash + RUN \ + chsh -s /bin/bash && \ echo "**** install node repo ****" && \ apt-get update && \ apt-get install -y \