Skip to content

Commit f671f79

Browse files
authored
fix: docker: io: PS1 environment variable in Dockerfile
1 parent fa8875d commit f671f79

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/Dockerfile.io

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ RUN apt-get update && apt-get upgrade && apt-get autoremove && \
3333
echo "> configure bash" && \
3434
echo "alias ls='ls --color=auto'" >> /etc/bash.bashrc && \
3535
echo "alias buni='bun i --no-save'" >> /etc/bash.bashrc && \
36-
echo "PS1='\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '" >> /etc/bash.bashrc && \
3736
echo "> setup inputrc" && \
3837
echo "set editing-mode vi" >> /etc/inputrc && \
3938
echo "TAB: menu-complete" >> /etc/inputrc && \
@@ -58,6 +57,7 @@ ENV LANG=en_US.UTF-8
5857
ENV LANGUAGE=en_US:en
5958
ENV LC_ALL=en_US.UTF-8
6059

60+
ENV PS1="\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ "
6161

6262
EXPOSE 8000
6363

0 commit comments

Comments
 (0)