Added Dockerfile&.zshrc

changed base image & added \`rm -rf /var/lib/apt/lists/*\`
This commit is contained in:
AkihikoITOH 2015-06-30 11:49:32 +09:00 committed by Jessica Frazelle
parent 58616b2c3d
commit 5c00063280
2 changed files with 13 additions and 0 deletions

0
zsh/.zshrc Normal file
View File

13
zsh/Dockerfile Normal file
View File

@ -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