-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
66 lines (55 loc) · 1.32 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from base/arch
MAINTAINER [email protected]
RUN [ -d /etc/pacman.d ] || mkdir -p /etc/pacman.d
RUN pacman -Syy
RUN pacman -S --noconfirm archlinux-keyring
RUN pacman -Syu -y --needed --noconfirm --force
RUN pacman-db-upgrade
RUN pacman -Syu --noconfirm --needed \
base-devel \
python2 \
wxgtk2.8 \
curl \
git \
wxpython2.8 \
bash \
python2-pip \
xorg-xauth \
xorg-fonts \
xorg-fonts-75dpi \
xorg-fonts-100dpi \
firefox \
emacs-nox \
vim \
vim-plugins \
sudo
RUN pip2 install \
Paver \
robotframework \
robotframework-tools \
robotframework-rfdoc \
robotframework-selenium2library \
robotframework-selenium2screenshots \
robotframework-sshlibrary \
robotframework-hub \
robotframework-lint \
robotframework-pageobjects \
robotframework-pycurllibrary \
robotframework-httplibrary \
sphinxcontrib-robotframework \
Pygments \
jedi \
pep8 \
pylint \
pyflakes \
requests \
rope
RUN useradd -m -G wheel -U admin
RUN echo 'admin:secret' | chpasswd
RUN echo 'admin ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
#RUN chown -R admin:admin /RIDE
USER admin
RUN git clone https://github.com/robotframework/RIDE.git /home/admin/RIDE
ENV HOME /home/admin
WORKDIR /home/admin/RIDE
CMD ["/usr/bin/paver", "run"]