Adding first pass at docker image for testing.

This commit is contained in:
James Patrick 2020-03-09 11:52:11 -04:00
parent 71e2f1e2b0
commit 8deb26b4be
1 changed files with 19 additions and 0 deletions

19
dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM alpine:latest
RUN apk add vim \
zsh \
make \
git \
openssh-client \
perl
ARG USER=test
ENV HOME /home/$USER
RUN adduser -D -s /bin/zsh $USER
USER $USER
WORKDIR $HOME
CMD git clone https://git.jpatrick.io/james/dotfiles.git \
&& cd dotfile \
&& make install