diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..e69de29 diff --git a/zsh/Dockerfile b/zsh/Dockerfile new file mode 100644 index 0000000..eaad197 --- /dev/null +++ b/zsh/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:jessie + +COPY ./.zshrc /root/.zshrc + +RUN apt-get update -y \ + && apt-get install -y zsh \ + && rm -rf /var/lib/apt/lists/* \ + && chsh -s /usr/bin/zsh + +ENV SHELL /usr/bin/zsh + +WORKDIR /root +ENTRYPOINT /usr/bin/zsh