summaryrefslogtreecommitdiffstats
path: root/OS/Dockerfile
blob: 1ed85474f022c7b0b7f5e4a9fef6e4759314d26a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM fedora:rawhide
MAINTAINER Christophe LARUE <dev@startx.fr>

USER root
# Install minimal packages
RUN dnf -y install deltarpm pwgen tar python-dnf-plugins-extras-migrate && \
    dnf-2 migrate && \
    dnf -y install psmisc procps coreutils findutils iputils net-tools wget logrotate zip && \
    dnf clean all 
COPY *.sh /bin/
RUN chmod 775 /bin/sx-lib.sh /bin/run.sh && \
    mkdir /data && \
    mkdir /data/logs

CMD ["/bin/run.sh"]