Skip to content

Instantly share code, notes, and snippets.

@kjgarza
Forked from anonymous/Dockerfile
Created September 10, 2016 09:29
Show Gist options
  • Save kjgarza/d71b1febc54cbc9ac3bca5aae0cd73b8 to your computer and use it in GitHub Desktop.
Save kjgarza/d71b1febc54cbc9ac3bca5aae0cd73b8 to your computer and use it in GitHub Desktop.
elke
# Pull base image.
FROM ubuntu:14.04
# Install.
RUN \
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
apt-get update && \
apt-get -y upgrade && \
apt-get install -y build-essential && \
apt-get install -y software-properties-common && \
apt-get install -y byobu curl git htop man unzip vim wget && \
rm -rf /var/lib/apt/lists/*
COPY . /home/elke/
# Install.
RUN \
curl -O http://pngu.mgh.harvard.edu/~purcell/plink/dist/plink-1.07-x86_64.zip
# Add files.
ADD root/.bashrc /root/.bashrc
ADD root/.gitconfig /root/.gitconfig
ADD root/.scripts /root/.scripts
# Set environment variables.
ENV HOME /home/elke
# Define working directory.
WORKDIR /elke
# Define default command.
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment