.dotfiles/Dockerfile

9 lines
153 B
Docker
Raw Normal View History

2020-11-07 15:58:15 +01:00
FROM debian:latest
2021-06-22 13:05:12 +02:00
ADD . /root/.dotfiles
2020-11-07 15:58:15 +01:00
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