.dotfiles/Dockerfile

9 lines
149 B
Docker
Raw Normal View History

2020-11-07 15:58:15 +01:00
FROM debian:latest
ADD . ~/.dotfiles
2020-11-08 21:55:05 +01:00
RUN apt-get update && apt-get upgrade -y
RUN apt-get install curl git zsh -y
2020-11-07 15:58:15 +01:00
2020-11-08 21:55:05 +01:00
ENTRYPOINT ~/.dotfiles/setup.sh