From 5c0006328004dc98cd96c1672f785cf85d97ae64 Mon Sep 17 00:00:00 2001 From: AkihikoITOH Date: Tue, 30 Jun 2015 11:49:32 +0900 Subject: [PATCH] Added Dockerfile&.zshrc changed base image & added \`rm -rf /var/lib/apt/lists/*\` --- zsh/.zshrc | 0 zsh/Dockerfile | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 zsh/.zshrc create mode 100644 zsh/Dockerfile 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