forked from ricardoasmarques/ceph-dev-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnautilus.Dockerfile
45 lines (36 loc) · 1.31 KB
/
nautilus.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
FROM opensuse/leap:15.0
LABEL maintainer="[email protected]"
RUN zypper --gpg-auto-import-keys ref
RUN zypper -n dup
RUN zypper -n install \
iproute2 net-tools-deprecated zsh lttng-ust-devel babeltrace-devel \
bash vim tmux git aaa_base ccache wget jq google-opensans-fonts psmisc \
python python2-pip python3-pip \
python-devel python3-devel \
python2-bcrypt python3-bcrypt \
python2-CherryPy python3-CherryPy \
python2-Cython python3-Cython \
python2-Jinja2 python3-Jinja2 \
python2-pecan python3-pecan \
python2-PrettyTable python3-PrettyTable \
python2-PyJWT python3-PyJWT \
python2-pylint python3-pylint \
python2-pyOpenSSL python3-pyOpenSSL \
python2-requests python3-requests \
python2-Routes python3-Routes \
python2-Werkzeug python3-Werkzeug
# temporary fix for error regarding version of tempora
RUN pip2 install tempora==1.8 backports.functools_lru_cache
RUN pip3 install tempora==1.8 backports.functools_lru_cache
ADD /shared/docker/ /docker
# Chrome
RUN /docker/install-chrome.sh
ENV CHROME_BIN /usr/bin/google-chrome
# oh-my-zsh
ENV ZSH_DISABLE_COMPFIX true
RUN /docker/install-omz.sh
ENV CEPH_ROOT /ceph
ENV PATH="/shared/bin/nautilus:${PATH}"
VOLUME ["/ceph"]
VOLUME ["/shared"]
CMD ["zsh"]