mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
Added Dockerfile&.zshrc
changed base image & added \`rm -rf /var/lib/apt/lists/*\`
This commit is contained in:
parent
58616b2c3d
commit
5c00063280
0
zsh/.zshrc
Normal file
0
zsh/.zshrc
Normal file
13
zsh/Dockerfile
Normal file
13
zsh/Dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user