1
0
Fork 0
env/Dockerfile

22 lines
255 B
Docker
Raw Normal View History

2018-03-27 23:47:53 +08:00
FROM alpine:latest
# Install tools from source
WORKDIR /
COPY .versions .versions
COPY .install/* .install/
RUN ./.install/install.sh
# Create user
RUN adduser -s /bin/zsh -D ambrose
USER ambrose
# Install dotfiles
WORKDIR /home/ambrose
COPY . .