-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
27 lines (19 loc) · 945 Bytes
/
Dockerfile
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
from taste:latest
#CUSTOMIZATIONS
#install additional software
RUN apt-get update && apt-get -y install aptitude gedit ruby-dev gitk xvfb
#restore ssh key
# adds a script which autostarts with the bash shell and tries to copy a ssh keypair from the host to the docker guest. This is intended for git access mostly, but can of course be used in any way.
#ADD ./configure-ssh.sh /root/
#RUN bash -c 'chmod +x /root/configure-ssh.sh ; echo "./configure-ssh.sh" >> /root/.bashrc'
#configure git
#RUN bash -c 'git config --global user.email [email protected] ; git config --global user.name ESROCOS USER '
# Download ESROCOS install script and make it executable
ADD https://raw.githubusercontent.com/ESROCOS/buildconf/master/install_esrocos /root/install_esrocos
RUN bash -c 'cd /root/ ; chmod +x install_esrocos;'
#
#
# At this point, you can start a fresh TASTE container with proper X11 redirection, with...
#
# ./Docker-run.sh
#