dotfiles/Dockerfile

14 lines
374 B
Text
Raw Normal View History

2015-09-06 14:51:02 +02:00
FROM debian
MAINTAINER "Steffen Vogel <post@steffenvogel.de>"
# Update packages
RUN sed -i 's|http://httpredir.debian.org|ftp://ftp.halifax.rwth-aachen.de|g' /etc/apt/sources.list
2015-11-20 14:07:21 +01:00
RUN apt-get update -y && apt-get install -y curl git
2015-09-06 14:51:02 +02:00
2015-11-20 14:07:21 +01:00
# Install dotfiles
2015-11-24 20:12:16 +01:00
WORKDIR /root
2015-09-06 14:51:02 +02:00
RUN curl -sSL https://raw.githubusercontent.com/stv0g/dotfiles/master/bootstrap.sh | bash
CMD /bin/bash