Skip to content

Commit

Permalink
move zsh to alpine
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Feb 26, 2017
1 parent 9220de9 commit 38fa7f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions zsh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM debian:stretch
FROM alpine:latest

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
RUN apk --no-cache add \
shadow \
zsh \
&& chsh -s /bin/zsh

ENV SHELL /usr/bin/zsh

WORKDIR /root
ENTRYPOINT /usr/bin/zsh
ENTRYPOINT /bin/zsh

0 comments on commit 38fa7f9

Please sign in to comment.