fixmydownloads/Dockerfile

18 lines
482 B
Docker
Raw Normal View History

2020-04-17 17:08:54 +00:00
FROM opensuse/tumbleweed
#RUN zypper -n install cmake make gcc gcc-c++ git dpkg binutils devscripts
2020-04-18 07:10:27 +00:00
RUN zypper -n update
2020-04-17 17:08:54 +00:00
RUN zypper -n install cmake
RUN zypper -n install make
RUN zypper -n install gcc
RUN zypper -n install gcc-c++
RUN zypper -n install dpkg
RUN zypper -n install rpm-build
2020-04-20 13:23:20 +00:00
RUN zypper -n install inotify-tools
RUN zypper -n install inotify-tools-devel
2020-04-17 17:08:54 +00:00
COPY . fixmydownloads
WORKDIR fixmydownloads
2020-04-20 13:23:20 +00:00
ENTRYPOINT [ "/fixmydownloads/scripts/docker-entrypoint.sh" ]