From 9bf20bc0dc5ab9046ea6a636679e76fa7fa1431c Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Mon, 14 Oct 2019 00:59:39 -0400 Subject: [PATCH] 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. --- Dockerfile | 19 ------------------- README.md | 16 ---------------- 2 files changed, 35 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index bf0d886..0000000 --- a/Dockerfile +++ /dev/null @@ -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 index 526264a..d2906d4 100644 --- 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 -``` -- libgit2 0.28.4