This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:latest | |
| RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \ | |
| && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 | |
| ENV LANG en_US.utf8 | |
| EXPOSE 4567 | |
| ENV HOME /root | |
| RUN apt-get -y update && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # for colors | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxCxDxBxegedabagacad | |
| # grep colors | |
| # export GREP_OPTIONS="--color=auto" | |
| # alias command | |
| alias grep="ggrep" | |
| alias g="git" |
NewerOlder