commit 9bf20bc0dc5ab9046ea6a636679e76fa7fa1431c (patch)
parent b6a8ffd04d9f532179326ff2846a81adfb9584e9
Author: Alex Karle <alex@karle.co>
Date: Mon, 14 Oct 2019 00:59:39 -0400
cleanup: remove Dockerfile
I've always played with the idea of automating the installation of this
repo. First there was a Vagrantfile, then a Dockerfile, and now I just
broke down and wrote a basic symlink manager specifically for dotfiles.
With dedicating the installation / management to this tool, I no longer
maintain or use the Docker installation. This commit removes it
accordingly.
Diffstat:
2 files changed, 0 insertions(+), 35 deletions(-)
diff --git a/Dockerfile b/Dockerfile
@@ -1,19 +0,0 @@
-# Start with a base of Ubuntu
-FROM ubuntu:xenial
-
-# Install needed packages
-RUN apt-get update
-RUN apt-get install -y curl git vim
-
-# Create new user (makes home + sets bash as shell)
-RUN useradd -ms /bin/bash akarle
-
-# Switch user
-USER akarle
-
-# copy in install script!
-WORKDIR /home/akarle
-COPY ./bin/install.sh ./install.sh
-
-# Start bash on enter
-CMD ["/bin/bash"]
diff --git a/README.md b/README.md
@@ -40,19 +40,3 @@ git clone https://github.com/akarle/dotfiles
chmod +x dotfiles/bin/link.sh
./link.sh
```
-
-## Trying it Out
-
-You can try these on for size in a completely isolated environment by using
-Docker (which must be installed separately).
-
-```sh
-# From within this repo, build from Dockerfile
-docker build -t akarledots .
-
-# Run container interactively
-docker run -it akarledots
-
-# ------ INSIDE CONTAINER ------
-./install.sh
-```