Skip to content

Instantly share code, notes, and snippets.

@harplife
Created October 8, 2021 07:59
Show Gist options
  • Save harplife/52ca1821cf450cceabcaeff45dc3574b to your computer and use it in GitHub Desktop.
Save harplife/52ca1821cf450cceabcaeff45dc3574b to your computer and use it in GitHub Desktop.
FROM ubuntu:20.04
#SHELL ["/bin/bash", "-c"] ##this is for when using source
ARG DEBIAN_FRONTEND=noninteractive
ARG TZ=Asia/Seoul
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt update && apt -y install\
fonts-nanum software-properties-common build-essential locales vim\
git curl fonts-powerline zsh tmux wget\
&& fc-cache –fv
RUN locale-gen ko_KR.UTF-8
ENV LC_ALL ko_KR.UTF-8
ENV LANG ko_KR.UTF-8
RUN chsh -s $(which zsh)
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
RUN git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
ENV TERM xterm-256color
RUN wget -P ~/ https://gist.githubusercontent.com/harplife/934fb66cc8f6492ed586fa404bdaa996/raw/762ddb49b1bc243d8e82f47045e2ac98fc01a960/.vimrc
RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
RUN vim +PluginInstall +qall
RUN rm ~/.zshrc && wget -P ~/ https://gist.githubusercontent.com/harplife/7e8a838bff748ad881ba1b65b47c95c8/raw/312eb132af79b38134f9c434fd57010a20a77247/.zshrc
RUN wget -P ~/ https://gist.githubusercontent.com/harplife/c34e15354797c69660540d5f59b94ace/raw/60afd9c375eec23931e8fd4fe59862d4cccc5562/.tmux.conf
## this is for starting container with zsh
#ENTRYPOINT ["/bin/zsh"]
#CMD ["-l"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment