-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (17 loc) · 749 Bytes
/
Dockerfile
File metadata and controls
29 lines (17 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FROM ubuntu:16.04
MAINTAINER Tino Kiviharju <tino.kiviharju@gmail.com>
ENV USER=root DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get dist-upgrade -y
RUN apt-get install -y python-software-properties software-properties-common apt-transport-https aptitude curl zsh git
RUN add-apt-repository ppa:jonathonf/vim
RUN add-apt-repository ppa:jonathonf/vim
RUN apt-get update
RUN apt-get install -y exuberant-ctags python
RUN apt-get install -y golang-1.9-go vim
RUN mkdir -p /root/.ssh
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
RUN git clone https://github.com/tkharju/vim.git /root/.vim
RUN curl https://raw.githubusercontent.com/tkharju/zsh/master/zshrc > /root/.zshrc
CMD /bin/zsh