Files
dockerfiless/devbox/Dockerfile
Fergal Moran f029ef1b76 Initial commit
2019-03-31 16:39:03 +01:00

31 lines
521 B
Docker

FROM ubuntu:latest
RUN apt-get update -y
RUN apt-get install -y mercurial \
git \
python \
curl \
mongodb \
vim \
vim-nox \
vim-scripts \
strace \
diffstat \
pkg-config \
cmake \
build-essential \
tcpdump \
screen \
python-setuptools \
exuberant-ctags \
build-essential \
cmake \
python-dev
#Set up git
RUN git clone https://github.com/fergalmoran/dotfiles.git ${HOME}/dotfiles \
&& cd ${HOME}/dotfiles \
&& ./install.sh
CMD /bin/zsh