File Dockerfile of Package demo2
FROM opensuse/tumbleweed
MAINTAINER Johannes Segitz <jsegitz@suse.com>
RUN zypper ref -f && \
zypper -n in -t pattern devel_basis && \
zypper clean -a
RUN zypper -n in git curl w3m python3 vim
# RUN echo '. /etc/bash_completion.d/git-prompt.sh' >> /root/.bashrc && \
# echo 'export GIT_PS1_SHOWDIRTYSTATE=1' >> /root/.bashrc && \
# echo "export PS1='\w\$(__git_ps1 \" (%s)\")\$ '" >> /root/.bashrc
RUN zypper -n in zsh
COPY install.sh /root
RUN /bin/sh /root/install.sh
#RUN git clone -b demo2 https://github.com/jsegitz/securityfordevelopers /root/bar
COPY normal /root/bar
# ENTRYPOINT ["/init"]